/* Vaunt Terms Integration Plugin Styles */

.vaunt-terms-content,
.vaunt-privacy-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    line-height: 1.6;
}

.vaunt-terms-meta {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-left: 4px solid #007cba;
    font-style: italic;
}

.vaunt-terms-meta small {
    color: #666;
    font-size: 0.9em;
}

.vaunt-terms-content h1,
.vaunt-privacy-content h1 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.vaunt-terms-content h2,
.vaunt-privacy-content h2 {
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.vaunt-terms-content h3,
.vaunt-privacy-content h3 {
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

.vaunt-terms-content p,
.vaunt-privacy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.vaunt-terms-content ul,
.vaunt-privacy-content ul,
.vaunt-terms-content ol,
.vaunt-privacy-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.vaunt-terms-content li,
.vaunt-privacy-content li {
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .vaunt-terms-content,
    .vaunt-privacy-content {
        padding: 15px;
    }
    
    .vaunt-terms-meta {
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .vaunt-terms-content h1,
    .vaunt-privacy-content h1 {
        font-size: 1.8em;
    }
    
    .vaunt-terms-content h2,
    .vaunt-privacy-content h2 {
        font-size: 1.4em;
    }
}

/* Loading state */
.vaunt-terms-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.vaunt-terms-loading::before {
    content: "⏳ ";
    margin-right: 10px;
}

/* Error state */
.vaunt-terms-error {
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
    color: #c33;
}

.vaunt-terms-error::before {
    content: "⚠️ ";
    margin-right: 10px;
}