﻿.relative {
    position: relative
}

#loading {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    width: 100%;
    height: 100%;
}

    #loading::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.19);
    }

    #loading > figure {
        height: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 100;
        transform: translateX(-50%);
    }

        #loading > figure > img {
            height: auto;
            object-fit: cover;
            text-align: center;
            margin: 0 auto;
        }

        #loading > figure > figcaption {
            text-align: center;
            margin: 10px auto;
            padding: 10px 0;
            color: #000;
        }

.formInput label {
    display: block !important;
}

.formInput label {
    color: #8d888e;
    display: none;
}

.resume-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

    .header img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-left: 20px;
        border: 3px solid #ddd;
    }

    .header h1 {
        margin: 0;
        font-size: 24px;
    }

.section {
    margin-bottom: 25px;
}

    .section h2 {
        font-size: 20px;
        margin-bottom: 15px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
        color: #007b9c;
    }

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    flex: 1 1 45%;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
}

    .info-item strong {
        display: block;
        color: #555;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .info-item span {
        color: #222;
    }

@media print {
    body {
        background: none;
        padding: 0;
    }

    .resume-container {
        box-shadow: none;
        border: none;
        margin: 0;
    }
}