/* ============================================
   HEADER - Option A: Profesional Limpio
   ============================================ */

.header {
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.header h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    margin: 0;
    white-space: nowrap;
}

.header p {
    display: none;
}

/* Progress bar - inline with header */
.project-progress,
.header-progress-spacing {
    margin: 0;
    max-width: none;
}

.progress-bar-container {
    width: 120px;
    height: 3px;
    background: var(--gray-100);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: none;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.5s;
    position: relative;
}

/* Remove shine animation */
.progress-bar-fill::after {
    display: none;
}

.progress-text {
    display: inline;
    font-size: 12px;
    color: var(--gray-400);
    margin: 0;
    margin-left: 8px;
    font-weight: 500;
    text-align: left;
}

/* Header buttons */
.header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    overflow: visible;
    position: relative;
    width: auto;
    justify-content: flex-end;
}

.header-btn, .config-button {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-600);
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    outline: none;
    position: relative;
    z-index: 1;
}

.header-btn:hover, .header-btn:focus {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-800);
    transform: none;
    box-shadow: none;
}

.header-btn:active, .config-button:active {
    transform: none;
}

.config-button {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.config-button:hover, .config-button:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: none;
    box-shadow: none;
}

/* Remove all color variants - unified ghost style */
.header-btn-layout,
.header-btn-new,
.header-btn-import,
.header-btn-export,
.header-btn-cloud,
.header-btn-help {
    background: white;
    border-color: var(--gray-200);
    color: var(--gray-600);
}

.header-btn-layout:hover,
.header-btn-new:hover,
.header-btn-import:hover,
.header-btn-export:hover,
.header-btn-cloud:hover,
.header-btn-help:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-800);
}

/* Remove decorative elements */
.layout-badge,
.header-badge-container {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 10px 16px;
    }

    .header h1 {
        font-size: 16px;
    }

    .header-buttons {
        gap: 4px;
    }

    .header-btn, .config-button {
        padding: 6px 10px;
        font-size: 12px;
    }

    .header-btn span {
        display: none;
    }

    .progress-bar-container {
        width: 80px;
    }

    .progress-text {
        display: none;
    }
}
