/* =========================================================
   VALIDOC CUSTOM STYLES & LAYOUT
   Objective: 
   - Centralize layout settings and colors for Validoc
   - Unify header aesthetics with Checkinnova layout
   - Eliminate inline styling for easier maintainability
   ========================================================= */

.wp-theme-validoc .vl-main-card {
    border: 0;
    box-shadow: var(--wp-shadow-sm, 0 2px 8px rgba(16, 24, 40, 0.05));
    padding: 2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    background-color: #ffffff;
    margin-bottom: 2rem;
}

.wp-theme-validoc .vl-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--wp-border, #e5eaf1);
}

.wp-theme-validoc .vl-header-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--vl-primary);
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.wp-theme-validoc .vl-header-icon {
    margin-right: 0.75rem;
    color: var(--vl-primary);
}

.wp-theme-validoc .vl-header-subtitle {
    color: var(--wp-text-muted, #7b88a1);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Common Layout Elements */
.wp-theme-validoc .vl-table-responsive {
    overflow: auto;
}

.wp-theme-validoc .vl-table-min-width {
    min-width: 1100px;
}

.wp-theme-validoc .vl-table-min-width-lg {
    min-width: 1200px;
}

.wp-theme-validoc .vl-modal-overlay {
    background: rgba(0,0,0,0.45); 
    backdrop-filter: blur(4px);
}

.wp-theme-validoc .vl-modal-overlay-dark {
    background: rgba(0,0,0,0.35);
}

.wp-theme-validoc .vl-progress-height {
    height: 20px;
}

.wp-theme-validoc .vl-badge-circle {
    width: 28px;
    height: 28px;
}

.wp-theme-validoc .vl-col-w-40 {
    width: 40%;
}

.wp-theme-validoc .vl-col-w-45 {
    width: 45%;
}
