.tab-background {
    background-color: #f8f9fa; /* Light gray background for each tab content */
    border-radius: 8px; /* Optional: round corners */
    padding: 15px; /* Padding inside the tab content */
}

/* Other styles remain the same */
.validation-time {
    position: absolute; /* Position the time in the corner */
    top: 10px; /* Adjust top position */
    right: 10px; /* Adjust right position */
    font-size: 12px; /* Font size for the validation time */
    color: #6c757d; /* Light gray color for better visibility */
    font-weight: normal; /* Not bold */
}

.progress-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
}

.btn-download {
    background-color: #007bff; /* Blue background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    padding: 8px 12px; /* Padding for the button */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 10px; /* Space above the button */
}

.btn-download:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
   /* CSS untuk membuat isi kolom berada di tengah */
   #tbl_permintaanfa td {
    text-align: center; /* Tengah secara horizontal */
    vertical-align: middle; /* Tengah secara vertikal */
}
.countdown {
        display: block;
        width: 100%;
        padding: 0.5rem;
        text-align: center;
        color: white;
        background-color: #6a6a6a;
    }
                    .timeline-item {
    text-align: center;
    flex: 1 1 18%; /* Adjust to allow for 5 items (100% / 5 = 20% minus margin) */
    min-width: 150px; /* Optional: set a minimum width if needed */
    position: relative;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.timeline-item:hover {
    transform: scale(1.02); /* Slightly scale up on hover */
}

.status-indicator.default {
    background-color: #ffc107; /* Color for the default state (yellow) */
    border: 2px solid white; /* White border */
}

.status-indicator.default i {
    color: white; /* White color for the icon */
}

.timeline-item:not(:last-child) {
    margin-right: 15px;
}

.profile-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.status-indicator {
    width: 20px; /* Adjust width as needed */
    height: 20px; /* Adjust height as needed */
    border-radius: 50%; /* Makes it circular */
    border: 2px solid white; /* White border */
    background-color: transparent; /* Transparent background */
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    position: relative; /* Ensure positioning for child elements */
}

.status-indicator i {
    color: white; /* White color for the icons */
    font-size: 10px; /* Size of the icons */
    margin: 0; /* Remove any default margin */
}

.status-indicator.approved {
    background-color: #28a745;
}

.status-indicator.rejected {
    background-color: #dc3545;
}

.timeline-content {
    padding-top: 10px;
    font-size: 14px;
}

.status-note {
    margin-top: 10px;
    text-align: left;
}

.status {
    background-color: #f8f9fa;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.bg-dark-500 {
    background-color: #333; /* Atau warna lain sesuai kebutuhan */
}
.note {
    background-color: #e9ecef;
    padding: 5px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .timeline-item {
        flex: 1 1 45%; /* Show 2 items in a row on smaller screens */
    }
}

@media (max-width: 480px) {
    .timeline-item {
        flex: 1 1 90%; /* Show 1 item in a row on mobile */
    }
}
.qr-code-container {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    right: 10px;  /* Adjust as needed */
    background-color: #fff; /* Optional: add background color for better visibility */
    padding: 10px; /* Optional: add padding */
    border: 1px solid #ccc; /* Optional: add border */
    border-radius: 5px; /* Optional: add rounded corners */
}

.qr-code-container img {
    display: block;
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    justify-content: space-between;
}

.button-group button {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    font-size: 16px;
}

.button-group a {
    text-decoration: none;
}
.icon-button {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 30px;
color: #ffffff;
background: #ffffff;
border: none;
outline: none;
border-radius: 50%;
}

.icon-button:hover {
cursor: pointer;
color: #333333;
background: #dddddd;
}

.icon-button:active {
}

.icon-button__badge {
position: absolute;
top: -10px;
right: -10px;
width: 25px;
height: 25px;
background: red;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
}