
body {
    background-color: #05050f;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.main-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
    min-height: 100vh;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #5a2af8, #b62aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-card, .table-card, .admin-card {
    background-color: #0f1222;
    border-radius: 15px;
    padding: 40px 20px;
    border: 1px solid #1f2235;
    box-shadow: 0 0 20px rgba(90, 42, 248, 0.1);
}

.btn-custom {
    background-color: #3b28cc;
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    text-decoration: none;
}

.btn-custom:hover { 
    background-color: #5a2af8; 
    color: white; 
}

.table { color: #ffffff; }
.table thead th { border-bottom: 2px solid #3b28cc; color: #a1a1b5; font-weight: normal; }
.table tbody td { border-bottom: 1px solid #1f2235; padding: 15px 10px; }

.section-title {
    color: #5a2af8;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.city-img { width: 100%; border-radius: 5px; object-fit: cover; height: 120px; }
.city-name { color: #5a2af8; font-size: 0.9rem; margin-top: 10px; text-align: center; }

// Admin Panel and Form Styles 
.form-control {
    background-color: #1f2235;
    border: 1px solid #3b28cc;
    color: white;
}

.form-control:focus {
    background-color: #1f2235;
    color: white;
    border-color: #b62aff;
    box-shadow: 0 0 10px rgba(182, 42, 255, 0.5);
}

.btn-menu {
    background-color: #1f2235;
    color: #a1a1b5;
    border: 1px solid #3b28cc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-menu:hover {
    background-color: #3b28cc;
    color: white;
    border-color: #5a2af8;
    transform: translateY(-3px);
}
