/* Portal Notices Styling */
.portal-notices-container {
    margin-bottom: 20px;
}

.portal-notice {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.portal-notice-info {
    border-left-color: #2271b1;
    background-color: #f0f6fc;
}

.portal-notice-warning {
    border-left-color: #dba617;
    background-color: #fcf9e8;
}

.portal-notice-error {
    border-left-color: #d63638;
    background-color: #fcf0f1;
}

.portal-notice strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.portal-notice p {
    margin: 0;
    line-height: 1.6;
}

.portal-expiration-warning {
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

/* Date restriction notice */
.date-restriction-notice {
    background-color: #f0f6fc;
    border-left: 4px solid #2271b1;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-restriction-notice .dashicons {
    color: #2271b1;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Notice styles matching WordPress standards */
.notice {
    background: #fff;
    border-left: 4px solid #00a0d2;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin: 5px 0 15px;
    padding: 12px;
}

.notice.notice-info {
    border-left-color: #00a0d2;
}

.notice.notice-warning {
    border-left-color: #ffb900;
}

.notice.notice-error {
    border-left-color: #dc3232;
}

.notice p {
    margin: 0.5em 0;
    padding: 2px;
}
