/**
 * NoovHub Webmail - Styles
 * Version: 1.0.0
 */

/* Wrapper principal */
.noovhub-webmail-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Iframe */
.noovhub-webmail-iframe {
    display: block;
    border: none;
    background: white;
}

.noovhub-webmail-toolbar {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    padding: 6px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.noovhub-webmail-archive-status {
    font-size: 12px;
    color: #333;
}

.noovhub-webmail-toolbar .button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Notices */
.noovhub-webmail-notice {
    padding: 40px 20px;
    text-align: center;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    margin: 20px 0;
}

.noovhub-webmail-notice.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.noovhub-webmail-notice p {
    margin: 10px 0;
}

.noovhub-webmail-notice p:first-child {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .noovhub-webmail-wrapper {
        border-radius: 0;
        box-shadow: none;
    }
}

/* Mode pleine hauteur viewport */
.noovhub-webmail-wrapper[style*="100vh"] {
    min-height: 600px;
}

/* Loading state */
.noovhub-webmail-wrapper:before {
    content: "Chargement du webmail...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 14px;
    z-index: 0;
}

.noovhub-webmail-iframe {
    position: relative;
    z-index: 1;
    background: white;
}
