/* Modal Components */
.modal-header {
    border-bottom: 1px solid #ddd;
}

.modal-title {
    color: #6d6e71;
    margin: 0 auto;
}

.modal-content {
    max-width: 460px;
}

/* Password Modal Specific */
.password-modal .modal-dialog {
    height: 100vh;
    margin: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.password-modal .modal-header {
    margin-top: 30px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Notification Modal */
.notification-modal .modal-content {
    max-width: 460px;
}

.notification-modal .border.rounded.p-4 {
    max-width: 460px;
}