a.RetakeProms{
    position: absolute;
    right: 10%;
    font-weight: 600;
    bottom: -8%;
    right: 20px;
    padding: 15.5px 30px;
}
a.RetakeProms span{
    display: inline-flex;
    align-items: center;
}
a.RetakeProms span::after{
    content: "";
    position: relative;
    display: block;
    background-image: url(images/icon-reset.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}
.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content{
    position: relative;
}




.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: white;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.modal-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.3rem;
}

.modal-body {
    padding: 25px 20px;
}

.modal-message {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #34495e;
}

.modal-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    gap: 12px;
}

.modal-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.cancel-btn {
    background-color: #FAF7F4;
    color: #800020;
    border: 1px solid rgba(128, 0, 32, 0.15);
    border-bottom: 1px solid rgba(128, 0, 32, 0.15) !important;
}

.cancel-btn:hover {
    background-color: #4D0013;
    color: white;
}

.ok-btn {
    background-color: #800020;
    color: white;
}

.ok-btn:hover {
    background-color: #4D0013;
}




/* Noti */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    max-width: 350px;
}

.notification {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 5px solid #800020;
    position: relative;
    overflow: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #800020 0%, #4D0013 100%);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.notification-message {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #718096;
}
