/*  Styling page PDF */
.view-container {
    width: 100%;
    height: 100vh;
    display: flex;
    padding: 48px 0;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.file-view {
    width: 90%;
    height: 100vh;
    border: 2px solid #00796B; /* Warna Bingkai */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Back Button Styling */
.back-button {
    background-color: #00796B;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    display: inline-block; /* Agar tombol tetap berbentuk */
    margin-top: 10px;
}

.back-button:hover {
    background-color: #004D40;
}

/* Access Link */
.access-link {
    background-color: #FFC107;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
}

.access-link:hover {
    animation: color-change 2s linear infinite;
}