* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    min-height: 100vh;
}

/* HEADER BASE CONTAINER */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    z-index: 800;
}
.header-inner-wrap {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 60px;
    align-items: center;
    justify-content: space-between;
}
/* PRIMARY LOGO GROUP */
.header-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.header-logo-wrap-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.header-logo {
    width: 40px;
    height: 40px;
}
.header-logo-title {
    font-size: 20px;
    font-weight: 900;
    color: white;
}
.header-logo-wrap a {
    text-decoration: none;
    color: inherit;
}


/* Dashboard Body Styles */
.dashboard-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0px;
    margin: 0 auto;
    padding: 0 15px;
    align-items: center;
}

.config-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.playing-cards-icon {
    width: 20px;
    height: 20px;
}
/* Desktop styles */
@media (min-width: 768px) {
    .header {
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header h1 {
        font-size: 28px;
        margin-bottom: 0;
    }

    .user-info {
        gap: 20px;
    }

    .user-info span {
        font-size: 16px;
    }

    .logout-link {
        padding: 8px 16px;
        font-size: 16px;
    }

    .dashboard-container {
        padding: 0 40px;
    }

    .config-section {
        max-width: 1000px;
        padding: 30px;
        margin-bottom: 30px;
    }
}

.config-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.game-info {
    background: #1a1a1a;
    width: 100%;
    color: #f2f2f2;
    padding: 15px;
    border-radius: 5px;
}

.info-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 3px 0;
    font-size: 14px;
    position: relative;
}

.info-row:last-child {
    margin-bottom: 0;
}

.label {
    font-weight: 600;
    color: #f2f2f2;;
}

.value {
    color: #666;
    font-weight: 500;
    font-size: 12px;
}

.config-form h3 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.bot-selection {
    margin-bottom: 30px;
}

.bot-label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
    font-size: 16px;
}

.bot-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    background: white;
    color: #555;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.bot-dropdown:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.game-setup {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

.setup-info p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.start-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.start-btn {
    background: #27ae60;
    color: white;
    text-align: center;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 5px;
}

.start-btn:hover {
    background: #219a52;
}
.start-btn.inactive {
    background: #333333;
}


/* Latest Updates Section */
.latest-updates {
    margin-top: 20px;
    padding: 15px 0px 0px 15px;
    border-top: 1px solid #333;
}

.updates-title {
    color: #f2f2f2;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.updates-list {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.update-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    font-size: 10px;
    color: #999;
    font-weight: 400;
}

.update-text {
    font-size: 12px;
    color: #f2f2f2;
    font-weight: 400;
    line-height: 1.3;
}

.expansion-area {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.placeholder-text {
    color: #95a5a6;
    font-style: italic;
    font-size: 14px;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .config-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .game-info {
        padding: 20px;
    }

    .info-row {
        font-size: 16px;
        padding: 5px 0;
    }

    .config-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .seats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .radio-group {
        gap: 15px;
    }

    .radio-option {
        min-height: auto;
        flex: none;
        justify-content: flex-start;
        padding: 0;
    }

    .radio-option input[type="radio"] {
        margin-right: 5px;
        transform: scale(1);
    }

    .radio-option span {
        font-size: 14px;
    }

    .start-btn {
        padding: 15px 40px;
        width: auto;
    }

    .expansion-area {
        padding: 40px;
    }

    .placeholder-text {
        font-size: 16px;
    }
}