/* General Styles */
body {
    font-family: 'Play', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0D0D0D;
    background-size: cover;
    color: white;
}

.main-container {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border: 2px solid #6C00FF;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(108, 0, 255, 0.8);
}

.form-container {
    width: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
}

.transparentbox {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 10px;
}

.paddingtop {
    margin-top: 20px;
}

form label {
    display: block;
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
}

form input[type="text"], form input[type="file"], form select {
    width: auto;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222;
    color: white;
    box-sizing: border-box;
    text-align: center;
}

form input[type="submit"], form button {
    background-color: #111c26;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Play', Arial, sans-serif;
    transition: background-color 0.3s ease;
    width: auto;
    font-weight: bold;
    margin-top: 10px;
}

form input[type="submit"]:hover, form button:hover {
    background-color: gold;
    color: white;
}

form a {
    display: block;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    text-align: center;
}

form a:hover {
    text-decoration: underline;
}

h1 {
    color: white;
    text-shadow: 0 0 12px #6C00FF;
}

.custom-team-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222;
    color: white;
    text-align: center;
}

.dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #2A2A3D;
    border: 1px solid #6C00FF;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-options.open {
    display: block;
}

.game-title {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #35354d;
    color: #b65eff;
    font-weight: bold;
}

.team-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #444;
}

.team-option:hover {
    background-color: #444466;
}

.team-option-logo {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.team-option-name {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 992px), (max-width: 768px), (max-width: 576px) {
    .main-container {
        width: 80%;
        margin: 10px auto;
        padding: 15px;
    }

    h1 {
        color: white;
        text-shadow: 0 0 12px #6C00FF;
        font-size: 22px;
    }
}