﻿.evidence-card {
    border-radius: 16px;
}

.geo-card {
    animation: fadeIn .3s ease;
}

.question-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
}

.detail-box {
    text-align: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

    .detail-box i {
        font-size: 24px;
        color: #0d6efd;
        display: block;
        margin-bottom: 10px;
    }

.modal-content {
    border-radius: 16px;
}

.btn-primary {
    border-radius: 10px;
}

.form-control {
    border-radius: 10px;
}

.evidence-radio input[type=radio] {
    margin-right: 5px;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Container */
.form-group {
    margin-bottom: 20px;
}

/* Label */
.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

.required {
    color: #dc3545;
}

/* Dropdown */
.form-select {
    width: 100%;
    height: 46px;
    padding: 0 42px 0 14px;
    font-size: 14px;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: #2d3748;
    background-color: #ffffff;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.25s ease;
    /* Custom Arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%2364748b' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

    /* Hover */
    .form-select:hover {
        border-color: #94a3b8;
    }

    /* Focus */
    .form-select:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    }

    /* Disabled */
    .form-select:disabled {
        background-color: #f8fafc;
        color: #94a3b8;
        cursor: not-allowed;
    }

    /* Validation Error */
    .form-select.error {
        border-color: #dc3545;
    }

        .form-select.error:focus {
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
        }


.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.75);
    justify-content: center;
    align-items: center;
}

.popup-container {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-sizing: border-box;
}

.popup-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0 auto;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 100000;
}

.success-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.70);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.success-popup {
    width: 95%;
    max-width: 650px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    animation: popupAnimation .3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #28a745;
    color: white;
    font-size: 45px;
    line-height: 80px;
    text-align: center;
}

.success-popup h2 {
    text-align: center;
    color: #28a745;
    margin-top: 15px;
}

.success-popup p {
    text-align: center;
    color: #555;
}

.details-box {
    margin-top: 25px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .detail-row:last-child {
        border-bottom: none;
    }

.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    border: none;
    background: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
}

.btn-print {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}

.popup-buttons {
    text-align: center;
    margin-top: 25px;
}

@keyframes popupAnimation {
    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.action-radio-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .action-radio-list input[type="radio"] {
        display: none;
    }

    .action-radio-list label {
        display: inline-block;
        min-width: 180px;
        padding: 12px 20px;
        border: 2px solid #dee2e6;
        border-radius: 10px;
        background: #fff;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        transition: all .3s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }

        .action-radio-list label:hover {
            border-color: #0d6efd;
            background: #f8fbff;
        }

    .action-radio-list input[type="radio"]:checked + label {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
        box-shadow: 0 4px 12px rgba(13,110,253,.25);
    }