/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ca8a04;
    border-radius: 16px;
    margin-top: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fde68a;
    border: 2px solid #eab308;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ca8a04;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-text h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}
.brand-text p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.actions {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ca8a04;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #111827;
}
.btn-primary {
    background: #eab308;
    border-color: #eab308;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .brand-logo {
        width: 36px;
        height: 36px;
    }
    .brand-text h1 {
        font-size: 18px;
    }
    .brand-text p {
        font-size: 13px;
    }
    .actions {
        width: 100%;
        justify-content: space-between;
    }
    .actions .btn {
        flex: 1;
        text-align: center;
        padding: 12px;
    }
}
