/**
 * DIPAE Tools Embed - Estilos públicos
 */

.dipae-tools-wrapper {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dipae-tools-iframe {
    display: block;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.dipae-tools-iframe.loaded {
    opacity: 1;
}

.dipae-tools-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 10;
    transition: opacity 0.3s ease-in-out;
}

.dipae-tools-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: dipae-spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes dipae-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dipae-tools-loading p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.dipae-tools-message {
    padding: 2rem;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    margin: 2rem 0;
}

.dipae-tools-message p {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.dipae-tools-message .button {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.dipae-tools-message .button:hover {
    background: #2980b9;
}

.dipae-tools-login-required {
    border: 2px solid #3498db;
}

.dipae-tools-access-denied {
    border: 2px solid #e74c3c;
}

.dipae-tools-access-denied p {
    color: #c0392b;
}

.dipae-tools-error {
    border: 2px solid #e74c3c;
    background: #fadbd8;
}

.dipae-tools-error p {
    color: #c0392b;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .dipae-tools-wrapper {
        margin: 1rem 0;
        border-radius: 4px;
    }

    .dipae-tools-message {
        padding: 1.5rem;
    }

    .dipae-tools-message p {
        font-size: 14px;
    }
}

/* Dark mode styles removed - using light theme only */










