/* ====== ERP ECHO — Unified UI Style ====== */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.page-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #0d4a71;
}

.page-header .actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
}

.btn-outline {
    background: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.btn-outline:hover {
    background: #0d6efd;
    color: #fff;
}

.card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}