/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* Map full screen */
#map {
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

/* Floating buttons */
#reportBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e53935, #b71c1c);
    color: #fff;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

#reportBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* My Location */
#myLocationBtn {
    position: fixed;
    bottom: 95px;
    right: 34px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1976d2;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 1000;
}

#myLocationBtn:hover {
    background: #1976d2;
    color: #fff;
}

/* Modal background */
#reportModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Modal box */
#reportBox {
    background: #fff;
    width: 380px;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    animation: popup 0.25s ease;
    position: relative;
}

@keyframes popup {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close button */
#closeBtn {
    position: absolute;
    top: 14px;
    right: 16px;
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

#closeBtn:hover {
    color: #000;
}

/* Title */
#reportBox h3 {
    text-align: center;
    margin-bottom: 18px;
    color: #222;
}

/* Form fields */
#crimeForm select,
#crimeForm textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

#crimeForm textarea {
    resize: none;
    height: 90px;
}

/* Select location button */
#selectLocationBtn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #1976d2;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 15px;
}

#selectLocationBtn:hover {
    background: #0d47a1;
}

/* Submit button */
#crimeForm button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}

#crimeForm button[type="submit"]:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

/* =========================================
   PROFESSIONAL MAP MARKER STYLES
   ========================================= */

/* মার্কারের গোল শেপ এবং ব্যাকগ্রাউন্ড */
.crime-icon {
    background-color: #ffffff; /* সাদা ব্যাকগ্রাউন্ড */
    border-radius: 50%;        /* গোল আকৃতি */
    box-shadow: 0 3px 8px rgba(0,0,0,0.4); /* নিচে সুন্দর শ্যাডো */
    
    /* আইকন মাঝখানে আনার জন্য */
    display: flex !important;
    align-items: center;
    justify-content: center;
    
    /* বর্ডার (অপশনাল, চাইলে কালার চেঞ্জ করতে পারেন) */
    border: 2px solid #ffffff;
    
    /* এনিমেশন ট্রানজিশন */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* মার্কারের ভেতরের আইকনের সাইজ */
.crime-icon i {
    font-size: 24px; /* আইকন এখন বড় দেখাবে */
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1)); /* আইকনের নিজস্ব শ্যাডো */
}

/* মাউস হোভার করলে আইকন বড় হবে এবং উপরে উঠবে */
.crime-icon:hover {
    transform: scale(1.15) translateY(-5px); /* একটু বড় হয়ে উপরে উঠবে */
    box-shadow: 0 10px 15px rgba(0,0,0,0.3); /* শ্যাডো গাঢ় হবে */
    z-index: 1000 !important; /* অন্য সব আইকনের উপরে দেখাবে */
    cursor: pointer;
}

/* =========================================
   SEVERITY COLORS (HIGH CONTRAST)
   ========================================= */

/* Low Severity - Green */
.sev-1 { 
    color: #27ae60; 
}
/* Medium Severity - Orange/Amber */
.sev-2 { 
    color: #f39c12; 
}
/* High Severity - Red */
.sev-3 { 
    color: #c0392b; 
}

/* মার্কারের বর্ডার কালার যদি Severity অনুযায়ী দিতে চান (Optional) */
/* .sev-1 { border-color: #27ae60; } */




















