/**
 * Public-facing styles for the plugin.
 */

/* Container styles */
.reff-verification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Verification box styles */
.verification-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Header styles */
.verification-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.verification-header h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.verification-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Content styles */
.verification-content {
    padding: 30px 20px;
}

.verification-status {
    text-align: center;
    margin-bottom: 20px;
}

.status-icon {
    margin-bottom: 15px;
}

.status-icon svg {
    animation: spin 2s linear infinite;
}

.status-message {
    margin: 0;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* Progress bar styles */
.verification-progress {
    margin: 20px 0;
}

.progress-bar {
    height: 4px;
    background-color: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #0073aa;
    width: 0;
    transition: width 0.3s ease;
}

/* Footer styles */
.verification-footer {
    padding: 15px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
}

.privacy-note {
    margin: 0;
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

/* Error styles */
.error {
    color: #dc3232;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Animation keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive styles */
@media screen and (max-width: 480px) {
    .verification-box {
        margin: 10px;
    }

    .verification-header h2 {
        font-size: 20px;
    }

    .verification-content {
        padding: 20px 15px;
    }

    .status-icon svg {
        width: 36px;
        height: 36px;
    }

    .status-message {
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .reff-verification-container {
        background: none;
        padding: 0;
    }

    .verification-box {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .verification-progress,
    .verification-footer {
        display: none;
    }
} 