
/* Versionamento e deprecated styles */
.version-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.version-info {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
}

.version-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.deprecated-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-left: 6px solid #ffc107;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    color: #856404;
}

.deprecated-badge {
    background: #dc3545 !important;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 8px;
    font-weight: bold;
}

.property-deprecated {
    opacity: 0.7;
    position: relative;
    background: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding-left: 10px;
}

.property-deprecated::before {
    content: "⏳ Deprecated";
    color: #856404;
    font-size: 0.8em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.schema-version-nav {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
}

.badge-new {
    background: #28a745 !important;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7em;
    margin-left: 5px;
}
