/* ====== General Page Styles ====== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
}
.container:first-child {
    margin-top: 0 !important;
}


.container {
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    color: #e0e0e0;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(255,64,129,0.2), 0 10px 20px rgba(64,224,208,0.1);
    max-width: 900px;
    margin-top: 60px;
    transition: all 0.3s ease;
} 

/* ====== Headings ====== */
h2, .modal-title {
    text-align: center;
    font-weight: 700;
    background: linear-gradient(90deg, #ff4081, #ff80ab, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: none !important;       /* removed all neon shadows */
    animation: none !important;         /* removed all neon animation */
}

/* ====== Form Labels ====== */
.form-group label {
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

/* ====== Input Fields ====== */
.form-control {
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #555;
    background-color: #2a2a2a;
    color: #e0e0e0;
    transition: all 0.4s ease;
    box-shadow: 0 0 5px rgba(255,64,129,0.2);
}

.form-control:focus {
    border-color: #ff4081;
    box-shadow: 0 0 12px rgba(255,64,129,0.8), 0 0 20px rgba(64,224,208,0.5);
    background-color: #333;
}

/* ====== Image Preview ====== */
.preview-img {
    max-width: 200px;
    margin-top: 10px;
    border-radius: 12px;
    border: 2px solid #ff4081;
    box-shadow: 0 5px 15px rgba(255,64,129,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,64,129,0.7), 0 5px 15px rgba(64,224,208,0.5);
}

/* ====== Buttons ====== */
.btn-primary {
    background: linear-gradient(45deg, #ff4081, #ff80ab, #40e0d0);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255,64,129,0.6), 0 0 15px rgba(64,224,208,0.3);
    animation: neon-glow 4s ease-in-out infinite alternate;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,64,129,0.8), 0 0 25px rgba(64,224,208,0.5);
}

.btn-danger {
    background: linear-gradient(45deg, #d32f2f, #ff4b4b, #ff4081);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(211,47,47,0.6), 0 0 15px rgba(255,64,129,0.3);
    animation: neon-glow-red 4s ease-in-out infinite alternate;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(211,47,47,0.8), 0 0 25px rgba(255,64,129,0.5);
}

/* ====== Modal Styles ====== */
.modal-content {
    border-radius: 25px;
    padding: 25px;
    background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
    color: #e0e0e0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}

/* ====== City Suggestions ====== */
#city-suggestions div {
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-bottom: 1px solid #444;
}

#city-suggestions div:hover {
    background-color: #ff4081;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255,64,129,0.7);
}

/* ====== Neon Glow Animations ====== */
@keyframes neon-glow {
    0% { text-shadow: 0 0 5px #ff4081, 0 0 10px #ff80ab, 0 0 15px #40e0d0; }
    50% { text-shadow: 0 0 10px #ff4081, 0 0 20px #ff80ab, 0 0 25px #40e0d0; }
    100% { text-shadow: 0 0 5px #ff4081, 0 0 10px #ff80ab, 0 0 15px #40e0d0; }
}

@keyframes neon-glow-red {
    0% { box-shadow: 0 0 10px #d32f2f, 0 0 15px #ff4b4b; }
    50% { box-shadow: 0 0 15px #d32f2f, 0 0 20px #ff4b4b; }
    100% { box-shadow: 0 0 10px #d32f2f, 0 0 15px #ff4b4b; }
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 768px) {
    .form-group.d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group.d-flex .form-control,
    .form-group.d-flex .btn {
        width: 100%;
        margin-bottom: 12px;
    }
}
