/* Client Notification Manager - Client Area Styles */

/* Alert Notifications */
.client-notification-alert {
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 4px solid;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.client-notification-alert.default {
    border-left-color: #6c757d;
}

.client-notification-alert.info {
    border-left-color: #5bc0de;
    background-color: #d9edf7;
}

.client-notification-alert.success {
    border-left-color: #5cb85c;
    background-color: #dff0d8;
}

.client-notification-alert.warning {
    border-left-color: #f0ad4e;
    background-color: #fcf8e3;
}

.client-notification-alert.danger {
    border-left-color: #d9534f;
    background-color: #f2dede;
}

.client-notification-alert.primary {
    border-left-color: #337ab7;
    background-color: #d9edf7;
}

.client-notification-alert.secondary {
    border-left-color: #777;
    background-color: #f5f5f5;
}

.client-notification-alert.gray {
    border-left-color: #95a5a6;
    background-color: #ecf0f1;
}

.client-notification-alert .notification-close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.5;
    margin-top: -5px;
}

.client-notification-alert .notification-close:hover {
    opacity: 1;
}

/* Floating Alert */
.client-notification-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 20px;
    border-bottom: 2px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.client-notification-floating.default {
    background-color: #6c757d;
    color: white;
    border-bottom-color: #5a6268;
}

.client-notification-floating.info {
    background-color: #5bc0de;
    color: white;
    border-bottom-color: #46b8da;
}

.client-notification-floating.success {
    background-color: #5cb85c;
    color: white;
    border-bottom-color: #4cae4c;
}

.client-notification-floating.warning {
    background-color: #f0ad4e;
    color: white;
    border-bottom-color: #eea236;
}

.client-notification-floating.danger {
    background-color: #d9534f;
    color: white;
    border-bottom-color: #c9302c;
}

.client-notification-floating.primary {
    background-color: #337ab7;
    color: white;
    border-bottom-color: #286090;
}

.client-notification-floating.secondary {
    background-color: #777;
    color: white;
    border-bottom-color: #666;
}

.client-notification-floating.gray {
    background-color: #95a5a6;
    color: white;
    border-bottom-color: #7f8c8d;
}

.client-notification-floating .notification-close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    margin-top: -5px;
}

.client-notification-floating .notification-close:hover {
    opacity: 1;
}

/* Modal Notifications - Enhanced Design */
.client-notification-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.client-notification-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.client-notification-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.client-notification-modal-content.small {
    width: 300px;
    max-width: 90%;
}

.client-notification-modal-content.medium {
    width: 448px;
    max-width: 90%;
}

.client-notification-modal-content.large {
    width: 560px;
    max-width: 90%;
}

.client-notification-modal-content.extra_large {
    width: 800px;
    max-width: 90%;
}

.client-notification-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.client-notification-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.client-notification-modal-header .notification-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #6b7280;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    line-height: 1;
}

.client-notification-modal-header .notification-close:hover {
    background: #f3f4f6;
    color: #1f2937;
    transform: rotate(90deg);
}

.client-notification-modal-body {
    padding: 30px;
    line-height: 1.6;
    color: #374151;
}

.client-notification-modal-body p {
    margin-bottom: 15px;
}

.client-notification-modal-body h2,
.client-notification-modal-body h3,
.client-notification-modal-body h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.client-notification-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    text-align: right;
}

.client-notification-modal-footer.left {
    text-align: left;
}

.client-notification-modal-footer.center {
    text-align: center;
}

.client-notification-modal-footer.bottom {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    text-align: left;
}

/* Notification Buttons */
.client-notification-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.client-notification-btn.extra_small {
    padding: 6px 12px;
    font-size: 12px;
}

.client-notification-btn.small {
    padding: 8px 16px;
    font-size: 14px;
}

.client-notification-btn.default {
    padding: 10px 20px;
    font-size: 16px;
}

.client-notification-btn.large {
    padding: 12px 24px;
    font-size: 18px;
}

/* Button Styles */
.client-notification-btn.solid.primary {
    background-color: #337ab7;
    color: white;
}

.client-notification-btn.solid.secondary {
    background-color: #777;
    color: white;
}

.client-notification-btn.solid.default {
    background-color: #6c757d;
    color: white;
}

.client-notification-btn.solid.info {
    background-color: #5bc0de;
    color: white;
}

.client-notification-btn.solid.success {
    background-color: #5cb85c;
    color: white;
}

.client-notification-btn.solid.warning {
    background-color: #f0ad4e;
    color: white;
}

.client-notification-btn.solid.danger {
    background-color: #d9534f;
    color: white;
}

.client-notification-btn.outline {
    background-color: transparent;
    border: 2px solid;
}

.client-notification-btn.link {
    background-color: transparent;
    border: none;
    text-decoration: underline;
}

/* Timer Styles */
.client-notification-timer {
    display: inline-block;
    margin: 10px 0;
}

.client-notification-timer .timer-item {
    display: inline-block;
    margin: 0 5px;
    text-align: center;
}

.client-notification-timer .timer-value {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.client-notification-timer .timer-label {
    font-size: 12px;
    text-transform: uppercase;
}

