/* ======================= VARIABLES GLOBALES ======================= */
:root {
    /* Couleurs principales */
    --primary-color: #00a99f;
    --primary-hover: #007f75;
    --primary-light: rgba(0, 169, 159, 0.1);
    --secondary-color: #607d8b;
    --secondary-hover: #4f6875;
    
    /* Couleurs économie */
    --banque-color: #3498db;
    --liquide-color: #2ecc71;
    --sale-color: #9b59b6;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #27ae60;
    
    /* Arrière-plans */
    --background-dark: #1a2531;
    --background-card: rgba(40, 44, 52, 0.7);
    --background-gradient: linear-gradient(135deg, #2e3b4e, #1a2531);
    
    /* Textes */
    --text-light: #f0f0f0;
    --text-secondary: #ccc;
    --text-highlight: #00a99f;
    
    /* Effets */
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --transition-speed: 0.3s;
    --card-glow: 0 0 15px rgba(0, 169, 159, 0.4);
}

/* ======================= RESET ET BASE ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
    border-radius: 10px;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 169, 159, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 125, 139, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ======================= HEADER ======================= */
.main-header {
    background-color: #000;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.logo-header {
    padding: 1rem 0;
    text-align: center;
    background: #1a2531;
    position: relative;
    overflow: hidden;
}

.logo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 159, 0.2), transparent);
    animation: scanEffect 3s linear infinite;
}

@keyframes scanEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

.logo-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 169, 159, 0.5);
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.logo-header h1 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Navigation */
.main-nav {
    background-color: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background-color: rgba(0, 169, 159, 0.2);
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

.main-nav a i {
    margin-right: 5px;
}

/* User Bar */
.user-bar {
    background: linear-gradient(90deg, #0f1419, #1a2531);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 169, 159, 0.3);
}

.user-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.user-name {
    font-weight: bold;
    color: var(--text-light);
}

.user-guild {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-left: 10px;
    border-left: 1px solid #444;
    margin-left: 10px;
}

.btn-login,
.btn-logout {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-login {
    background: #5865F2;
    color: white;
}

.btn-login:hover {
    background: #4752C4;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.btn-logout {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.btn-logout:hover {
    background: #e74c3c;
    color: white;
}

/* ======================= MAIN CONTAINER ======================= */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    min-height: calc(100vh - 200px);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ======================= ALERTS ======================= */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(39, 174, 96, 0.2);
    border-left: 4px solid var(--success-color);
    color: #2ecc71;
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    border-left: 4px solid var(--danger-color);
    color: #e74c3c;
}

.alert-info {
    background: rgba(52, 152, 219, 0.2);
    border-left: 4px solid var(--banque-color);
    color: #3498db;
}

.alert-warning {
    background: rgba(243, 156, 18, 0.2);
    border-left: 4px solid var(--warning-color);
    color: #f39c12;
}

/* ======================= PAGE TITLE ======================= */
.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(0, 169, 159, 0.5);
}

.page-title i {
    font-size: 1.8rem;
}

/* ======================= CARDS ======================= */
.card {
    background: linear-gradient(160deg, rgba(40, 50, 65, 0.95) 0%, rgba(20, 25, 35, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 169, 159, 0.05) 0%, rgba(0, 169, 159, 0.2) 50%, rgba(0, 169, 159, 0.05) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.card:hover::before {
    animation: shineSlide 1.4s ease-out forwards;
}

@keyframes shineSlide {
    0% { left: -75%; }
    100% { left: 125%; }
}

.card:hover {
    box-shadow: 0 0 25px rgba(0, 169, 159, 0.4);
    transform: translateY(-3px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--primary-color);
}

/* ======================= PORTEFEUILLE ======================= */
.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wallet-card {
    background: linear-gradient(160deg, rgba(40, 50, 65, 0.95) 0%, rgba(20, 25, 35, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-card.banque {
    border-left: 4px solid var(--banque-color);
}

.wallet-card.liquide {
    border-left: 4px solid var(--liquide-color);
}

.wallet-card.sale {
    border-left: 4px solid var(--sale-color);
}

.wallet-card.total {
    border-left: 4px solid var(--warning-color);
}

.wallet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.wallet-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wallet-card.banque .wallet-icon { color: var(--banque-color); }
.wallet-card.liquide .wallet-icon { color: var(--liquide-color); }
.wallet-card.sale .wallet-icon { color: var(--sale-color); }
.wallet-card.total .wallet-icon { color: var(--warning-color); }

.wallet-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.wallet-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
}

/* ======================= STATS GRID ======================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(160deg, rgba(40, 50, 65, 0.95) 0%, rgba(20, 25, 35, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-glow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================= TABLES ======================= */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(0, 169, 159, 0.2);
}

th {
    padding: 1rem;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

tr:hover {
    background: rgba(0, 169, 159, 0.05);
}

.table-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.table-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ======================= BADGES ======================= */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-success { background: rgba(39, 174, 96, 0.2); color: #2ecc71; }
.badge-danger { background: rgba(231, 76, 60, 0.2); color: #e74c3c; }
.badge-warning { background: rgba(243, 156, 18, 0.2); color: #f39c12; }
.badge-info { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.badge-purple { background: rgba(155, 89, 182, 0.2); color: #9b59b6; }

/* ======================= BUTTONS ======================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 20px rgba(0, 169, 159, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-hover);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #1e8449;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ======================= FORMS ======================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.form-label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 159, 0.2);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* ======================= CLASSEMENT ======================= */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    background: rgba(0, 169, 159, 0.1);
    transform: translateX(5px);
}

.ranking-position {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
}

.ranking-position.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.ranking-position.silver {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #000;
}

.ranking-position.bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #fff;
}

.ranking-position.default {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.ranking-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.ranking-info {
    flex: 1;
}

.ranking-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.ranking-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* ======================= SERVER SELECTION ======================= */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.server-card {
    background: linear-gradient(160deg, rgba(40, 50, 65, 0.95) 0%, rgba(20, 25, 35, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-glow);
}

.server-card.selected {
    border-color: var(--success-color);
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.3);
}

.server-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 169, 159, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-icon img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.server-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.server-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.server-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ======================= TRANSACTION HISTORY ======================= */
.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: rgba(0, 169, 159, 0.1);
}

.transaction-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.transaction-icon.credit {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
}

.transaction-icon.debit {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.transaction-details {
    flex: 1;
}

.transaction-type {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.transaction-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.transaction-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.transaction-amount.positive {
    color: #2ecc71;
}

.transaction-amount.negative {
    color: #e74c3c;
}

.transaction-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ======================= ENTREPRISE ======================= */
.entreprise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.entreprise-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.entreprise-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.employe-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.employe-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.employe-info {
    flex: 1;
}

.employe-name {
    font-weight: bold;
}

.employe-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.employe-salaire {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
}

/* ======================= FOOTER ======================= */
.page-footer {
    background: #0f1923;
    padding: 2rem 0 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(0, 169, 159, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links h3,
.footer-social h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ======================= LOADING ======================= */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 169, 159, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ======================= EMPTY STATE ======================= */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ======================= RESPONSIVE ======================= */
@media screen and (max-width: 992px) {
    .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-header h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav a {
        padding: 0.7rem 1rem;
    }
    
    .user-bar .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .wallet-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .entreprise-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-header h1 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}



/* Style des selects */
select,
.form-select,
.player-select {
    background-color: #1a2531 !important;
    background: #1a2531 !important;
    color: #f0f0f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

/* Style des options dans les selects */
select option,
.form-select option,
.player-select option {
    background-color: #1a2531 !important;
    background: #1a2531 !important;
    color: #f0f0f0 !important;
    padding: 10px;
}

/* Option survolée */
select option:hover,
select option:focus,
select option:checked,
.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
    background-color: #00a99f !important;
    background: linear-gradient(#00a99f, #00a99f) !important;
    color: white !important;
}

/* Pour Firefox */
select {
    scrollbar-color: #00a99f #1a2531;
}

/* Pour les navigateurs qui supportent l'apparence */
select::-ms-expand {
    background-color: #1a2531;
}