/* Treasure Hunt Custom Styles */

:root {
    --th-approved: #198754;
    --th-pending: #ffc107;
    --th-rejected: #dc3545;
    --th-current: #0d6efd;
    --th-unstarted: #6c757d;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

main {
    flex: 1;
}

.map-container {
    height: 320px;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.badge-status-aprobat {
    background-color: var(--th-approved) !important;
    color: white;
}

.badge-status-in-asteptare {
    background-color: var(--th-pending) !important;
    color: #212529;
}

.badge-status-respins {
    background-color: var(--th-rejected) !important;
    color: white;
}

.badge-status-curent {
    background-color: var(--th-current) !important;
    color: white;
}

.badge-status-neinceput {
    background-color: var(--th-unstarted) !important;
    color: white;
}

.media-preview-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 0.375rem;
}

.media-thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.video-player {
    max-width: 100%;
    max-height: 400px;
    border-radius: 0.375rem;
}

/* Mobile-first big buttons */
.btn-mobile-large {
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}
