﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.profile-badges .badge {
    margin: 0 0.15rem;
}

.card-modern {
    min-height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 0.75em;
    transition: box-shadow 0.2s;
}

    .card-modern:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    }

    .card-modern .card-header {
        background: transparent;
        border-bottom: none;
    }

    .card-modern .card-body {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 1.5rem;
        padding-right: 1.25rem;
        line-height: 1.5;
    }

.applicant-card {
    overflow: hidden;
}

.applicant-cover {
    padding: 1.25rem 3.25rem 1rem 1.25rem;
    background: linear-gradient(135deg, #258cfb, #6f42c1);
    position: relative;
    color: #fff;
}

.applicant-cover-name {
    font-weight: 600;
}

.applicant-cover-type {
    font-size: 0.85rem;
    opacity: 0.9;
}

.applicant-cover-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.applicant-cover-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background-color: rgba(255,255,255,0.18);
}

}

.applicant-status-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1;
}

.applicant-card-body {
    padding-top: 1rem;
}

.applicant-photos {
    display: flex;
    gap: 1px;
    background-color: #dee2e6;
}

.applicant-photo-box {
    flex: 1 1 50%;
    position: relative;
    height: 220px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.15s;
}

    .applicant-photo-box:hover {
        opacity: 0.85;
    }

    .applicant-photo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.applicant-photo-zoomable {
    cursor: pointer;
    transition: opacity 0.15s;
}

    .applicant-photo-zoomable:hover {
        opacity: 0.85;
    }

.applicant-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.45);
}

.applicant-info-list .list-group-item {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
}

    .applicant-info-list .list-group-item:first-child {
        border-top: none;
    }
}
