/* dashboard.css */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%);
    --danger-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --dark-bg: #0a0a0f;
    --card-bg: #1a1a2e;
    --accent-color: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #a8b2d1;
    --border-color: #2a2d47;
    --shadow-primary: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.6);
    --glow-effect: 0 0 30px rgba(102, 126, 234, 0.4);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 200, 255, 0.3) 0%, transparent 50%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 20px 20px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.header-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    min-width: 150px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.status-text {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.update-info {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:nth-child(2n)::before {
    background: var(--secondary-gradient);
}

.stat-card:nth-child(3n)::before {
    background: var(--warning-gradient);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.stat-card:nth-child(2n) .stat-icon {
    background: var(--secondary-gradient);
}

.stat-card:nth-child(3n) .stat-icon {
    background: var(--warning-gradient);
}

.stat-card h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #00ff88;
    font-weight: 500;
}

/* Sections */
.section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-primary);
    overflow: hidden;
}

.section-header {
    background: var(--accent-color);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #4facfe;
    font-size: 1.2rem;
}

.section-content {
    padding: 30px;
}

/* Player Cards */
.player-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

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

.player-card.vip,
.player-card.top-rank {
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.player-header {
    background: var(--accent-color);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.player-card.top-rank .player-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 179, 71, 0.1));
}

.player-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.player-avatar.top-rank {
    background: var(--gold-gradient);
}

.player-rank {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-gradient);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.player-basic-info {
    flex: 1;
    min-width: 150px;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.player-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.player-coins-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.player-body {
    padding: 25px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--accent-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.stat-item.highlight {
    background: rgba(79, 172, 254, 0.1);
    border-color: rgba(79, 172, 254, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.player-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.detail-group {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.detail-group h5 {
    color: #4facfe;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 45, 71, 0.3);
    flex-wrap: wrap;
    gap: 10px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    min-width: 120px;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.uuid-display {
    margin-top: 15px;
    padding: 15px;
    background: var(--dark-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.uuid-display strong {
    color: #4facfe;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}

/* Filter Section */
.filter-section {
    margin-bottom: 30px;
}

.search-box {
    width: 100%;
    background: var(--accent-color);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.search-box::placeholder {
    color: var(--text-secondary);
}

.search-box:focus {
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    background: var(--accent-color);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    color: var(--text-primary);
    border-color: rgba(102, 126, 234, 0.8);
    background: rgba(102, 126, 234, 0.1);
}

.filter-tab i {
    margin-right: 6px;
}

/* Performance Indicators */
.performance-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.performance-indicator.excellent {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.4);
}

.performance-indicator.good {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.4);
}

.performance-indicator.warning {
    background: rgba(253, 187, 45, 0.2);
    color: #fdbb2d;
    border: 1px solid rgba(253, 187, 45, 0.4);
}

.performance-indicator.critical {
    background: rgba(255, 154, 158, 0.2);
    color: #ff9a9e;
    border: 1px solid rgba(255, 154, 158, 0.4);
}

/* Server Cards */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.server-card {
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

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

.server-card h4 {
    color: #4facfe;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(42, 45, 71, 0.3);
    flex-wrap: wrap;
    gap: 10px;
}

.server-detail:last-child {
    border-bottom: none;
}

.server-detail strong {
    color: var(--text-secondary);
    font-weight: 600;
    flex: 1;
    min-width: 120px;
}

.server-detail span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Memory Bar */
.memory-bar {
    background: var(--dark-bg);
    border-radius: 10px;
    height: 8px;
    margin-top: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.memory-fill {
    background: var(--success-gradient);
    height: 100%;
    transition: width 0.8s ease;
    border-radius: 10px;
}

.memory-fill.high {
    background: var(--danger-gradient);
}

.memory-fill.medium {
    background: var(--warning-gradient);
}

/* Arena Cards */
.arena-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.arena-card {
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.arena-card h3 {
    color: #4facfe;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.arena-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

/* No Results */
.no-results {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 30px;
    font-style: italic;
    font-size: 1.1rem;
    background: var(--accent-color);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin: 30px 0;
}

.no-results i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(102, 126, 234, 0.5);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: rgba(102, 126, 234, 1);
    animation: spin 1s ease-in-out infinite;
}

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .player-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .player-details {
        grid-template-columns: 1fr;
    }

    .server-grid {
        grid-template-columns: 1fr;
    }

    .section-content {
        padding: 20px;
    }

    .filter-tabs {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .player-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .filter-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .section-header {
        padding: 15px 20px;
    }
}

/* Kozmetik Bölümü */
.cosmetics-section {
    margin-top: 25px;
    background: var(--dark-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.cosmetics-header {
    background: var(--accent-color);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.cosmetics-header h5 {
    color: #4facfe;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cosmetics-count {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cosmetics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    padding: 20px;
}

.cosmetic-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cosmetic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    transition: all 0.3s ease;
}

/* Rarity Colors */
.cosmetic-item.common::before {
    background: #9e9e9e;
}

.cosmetic-item.uncommon::before {
    background: #4caf50;
}

.cosmetic-item.rare::before {
    background: #2196f3;
}

.cosmetic-item.epic::before {
    background: #9c27b0;
}

.cosmetic-item.legendary::before {
    background: #ff9800;
}

.cosmetic-item.mythic::before {
    background: #f44336;
}

.cosmetic-item.equipped {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.cosmetic-item.equipped::before {
    background: #00ff88;
    height: 4px;
}

.cosmetic-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cosmetic-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.cosmetic-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    flex: 1;
}

.equipped-badge {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.cosmetic-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cosmetic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.cosmetic-rarity {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
}

.cosmetic-item.common .cosmetic-rarity {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
}

.cosmetic-item.uncommon .cosmetic-rarity {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.cosmetic-item.rare .cosmetic-rarity {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.cosmetic-item.epic .cosmetic-rarity {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.cosmetic-item.legendary .cosmetic-rarity {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.cosmetic-item.mythic .cosmetic-rarity {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.cosmetic-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
}

.cosmetic-status.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.cosmetic-status.inactive {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
}

.cosmetics-stats {
    background: var(--accent-color);
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cosmetic-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cosmetic-stat i {
    color: #4facfe;
}

.no-cosmetics {
    padding: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.no-cosmetics i {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Responsive kozmetik */
@media (max-width: 768px) {
    .cosmetics-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .cosmetic-item {
        padding: 12px;
    }
    
    .cosmetics-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .cosmetics-header h5 {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .cosmetics-grid {
        padding: 10px;
    }
    
    .cosmetic-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cosmetic-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}