/* assets/css/style.css - Full Version */

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f4f8;
    color: #1e293b;
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #0f3b5e;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #eab308;
}

.nav-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.nav-brand {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.nav-brand .brand-icon {
    font-size: 28px;
}

.nav-brand .brand-text {
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    display: -webkit-flex;
    display: flex;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.nav-menu li a.active {
    background: #eab308;
    color: #0f3b5e;
}

/* ===== LOGIN BUTTON ===== */
.login-top {
    position: fixed;
    top: 16px;
    right: 24px;
    z-index: 9999;
}

.admin-info {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 12px;
    background: rgba(15, 59, 94, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-name {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.btn-logout-top {
    color: #fca5a5;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-logout-top:hover {
    color: #ffffff;
    background: rgba(220, 38, 38, 0.3);
}

.btn-login-top {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(15, 59, 94, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-login-top:hover {
    background: #eab308;
    color: #0f3b5e;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* ===== SLIDER ===== */
.slider-section {
    position: relative;
    width: 100%;

    aspect-ratio: 16 / 9; 
    max-height: 650px;
    background: #0a2a44;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 1.2s ease-in-out;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;      
    background: #0a2a44;      
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    -webkit-transform: translateY(-50%) scale(1.05);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.slider-dots .dot.active {
    background: #eab308;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    border-color: #eab308;
    -webkit-box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

/* ===== LAYANAN SECTION ===== */
.layanan-section {
    padding: 40px 0 50px;
    background: #f0f4f8;
}

.layanan-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.layanan-card {
    background: #ffffff;
    padding: 28px 20px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e8ecf1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.layanan-card:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: #0f3b5e;
}

.layanan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: #f1f5f9;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 26px;
    color: #0f3b5e;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.layanan-card:hover .layanan-icon {
    background: #0f3b5e;
    color: #ffffff;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.layanan-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 2px;
}

.layanan-card .layanan-sub {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.layanan-card .layanan-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 38px;
}

.btn-layanan {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    background: #0f3b5e;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    border: none;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-layanan:hover {
    background: #eab308;
    color: #0f3b5e;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #0f3b5e, #1a5276);
    padding: 36px 0 28px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 15px;
    opacity: 0.85;
    margin-top: 4px;
}

/* ===== FORM SECTION ===== */
.form-section {
    padding: 40px 0 50px;
    background: #f0f4f8;
    min-height: 60vh;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 36px 40px;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-wrapper h2 {
    font-size: 22px;
    color: #0f3b5e;
    margin-bottom: 6px;
}

.form-wrapper .form-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 4px;
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
    background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0f3b5e;
    -webkit-box-shadow: 0 0 0 3px rgba(15, 59, 94, 0.08);
    box-shadow: 0 0 0 3px rgba(15, 59, 94, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-wrapper .file-label {
    display: block;
    padding: 12px 18px;
    background: #f1f5f9;
    border: 1.5px dashed #94a3b8;
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.file-upload-wrapper:hover .file-label {
    background: #e2e8f0;
    border-color: #0f3b5e;
}

/* ===== FILE UPLOAD PREVIEW ===== */
.file-preview-wrapper {
    display: none;
    align-items: center;
    gap: 12px;
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 8px;
    border: 1px solid #e2e8f0;
}

.file-preview-wrapper.show {
    display: flex;
}

.file-preview-wrapper .file-icon {
    font-size: 24px;
    color: #0f3b5e;
}

.file-preview-wrapper .file-name {
    flex: 1;
    font-size: 14px;
    color: #1e293b;
    word-break: break-all;
}

.file-preview-wrapper .file-size {
    font-size: 12px;
    color: #94a3b8;
}

.file-preview-wrapper .btn-remove-file {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.file-preview-wrapper .btn-remove-file:hover {
    background: #b91c1c;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-wrapper .file-label {
    display: block;
    padding: 14px 18px;
    background: #f1f5f9;
    border: 2px dashed #94a3b8;
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.file-upload-wrapper:hover .file-label {
    background: #e2e8f0;
    border-color: #0f3b5e;
}

.file-upload-wrapper .file-label i {
    margin-right: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .file-preview-wrapper {
        flex-wrap: wrap;
    }
    .file-preview-wrapper .btn-remove-file {
        width: 100%;
        text-align: center;
        padding: 6px;
    }
}

.btn-submit {
    padding: 12px 32px;
    background: #0f3b5e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0a2a44;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.btn-reset {
    padding: 12px 28px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-reset:hover {
    background: #e2e8f0;
}

/* ===== ALERT ===== */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-success i {
    font-size: 24px;
    color: #16a34a;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-danger i {
    font-size: 24px;
    color: #dc2626;
}

/* ===== DOKUMEN LIST (AKIP & IKI) ===== */
.dokumen-section {
    padding: 40px 0 50px;
    background: #f0f4f8;
    min-height: 60vh;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dokumen-list {
    max-width: 900px;
    margin: 0 auto;
}

.dokumen-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #e8ecf1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.dokumen-card:hover {
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #0f3b5e;
}

.dokumen-info h4 {
    font-size: 16px;
    color: #0f3b5e;
    font-weight: 600;
}

.dokumen-info p {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.dokumen-info .tahun {
    display: inline-block;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    color: #475569;
    margin-top: 4px;
}

.btn-download {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #0f3b5e;
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: #eab308;
    color: #0f3b5e;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.btn-back-home {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #0f3b5e;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 24px;
}

.btn-back-home:hover {
    background: #eab308;
    color: #0f3b5e;
}

/* ===== IKU PAGE ===== */
.iku-section {
    padding: 40px 0 50px;
    background: #f0f4f8;
}

.iku-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.iku-table th {
    background: #0f3b5e;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.iku-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e8ecf1;
    font-size: 14px;
}

.iku-table tr:hover td {
    background: #f8fafc;
}

.iku-table .total-row {
    background: #f1f5f9;
    font-weight: 700;
}

.iku-table .total-row td {
    border-bottom: none;
    font-size: 16px;
}

.iku-result {
    max-width: 900px;
    margin: 0 auto;
}

.iku-result .hasil-box {
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.iku-result .hasil-box .nilai {
    font-size: 48px;
    font-weight: 800;
    color: #0f3b5e;
}

.iku-result .hasil-box .nilai span {
    color: #eab308;
}

.iku-result .hasil-box .predikat {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f3b5e;
    color: #94a3b8;
    padding: 32px 0 16px;
    margin-top: auto;
    border-top: 3px solid #eab308;
}

.footer-content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    padding: 3px 0;
}

.footer-links ul li a {
    color: #94a3b8;
    font-size: 13px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #eab308;
}

.footer-contact p {
    font-size: 13px;
    color: #94a3b8;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
}

.footer-contact p i {
    color: #eab308;
    width: 18px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .layanan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .slider-section {
        height: 450px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        -webkit-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.open {
        display: -webkit-flex;
        display: flex;
    }

    .nav-menu li a {
        padding: 10px 16px;
        width: 100%;
    }

    .login-top {
        top: 12px;
        right: 12px;
    }

    .btn-login-top,
    .btn-logout-top {
        padding: 6px 14px;
        font-size: 12px;
    }

    .admin-info {
        padding: 6px 12px;
    }

    .admin-name {
        font-size: 12px;
    }

    .slider-section {
        height: 350px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    

    .layanan-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .layanan-card {
        padding: 20px 16px 18px;
    }

    .layanan-card h3 {
        font-size: 17px;
    }

    .form-wrapper {
        padding: 24px 20px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .dokumen-card {
        -webkit-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .iku-table {
        font-size: 13px;
    }

    .iku-table th,
    .iku-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .slider-section {
        height: 250px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
        gap: 6px;
    }

    .layanan-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .layanan-card {
        padding: 16px 12px 14px;
    }

    .layanan-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .layanan-card h3 {
        font-size: 14px;
    }

    .layanan-card .layanan-desc {
        font-size: 11px;
        min-height: 30px;
    }

    .btn-layanan {
        padding: 6px 14px;
        font-size: 11px;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .page-header p {
        font-size: 13px;
    }

    .form-wrapper {
        padding: 18px 14px;
    }

    .form-wrapper h2 {
        font-size: 18px;
    }

    .btn-submit,
    .btn-reset {
        width: 100%;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .form-actions {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .dokumen-info h4 {
        font-size: 14px;
    }

    .btn-download {
        padding: 6px 14px;
        font-size: 12px;
    }
}