/* =========================================================
   BUTTONS
========================================================= */

.inline-actions {
    margin-top: 10px;
}
/* =========================
   BASE BUTTON
========================= */

.btn-primary,
.btn-secondary,
.btn-delete,
.btn-edit,
.btn-paid,
.btn-unpaid,
.btn-remind,
.btn-danger,
.btn-success {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}


/* =========================
   PRIMARY
========================= */

.btn-primary {
    background: #1c2674;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-primary:hover {
    background: #2a3590;
}


/* =========================
   SECONDARY
========================= */

.btn-secondary {
    background: #eef1f7;
    color: #161b4e;
    padding: 8px 14px;
    border-radius: 6px;
    margin: 0 5px;
}



.btn-secondary:hover {
    background: #e3e8f3;
}

.btn-secondary.active {
    background: #1c2674;
    color: #ffffff;
}


/* =========================
   EDIT
========================= */

.btn-edit {
    background: #eef1f7;
    color: #141c45;
    padding: 3px 5px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-edit:hover {
    background: #e3e8f3;
    border: 1px solid #141c45;
    padding: 2px 4px;
}


/* =========================
   DELETE
========================= */

.btn-delete {
    background: #ffe5e5;
    color: #b00020;
    padding: 3px 5px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-delete:hover {
    background: #ebcaca;
    color: #b00020;
    border: 1px solid #b00020;
    padding: 2px 4px;
}


/* =========================
   PAID
========================= */

.btn-paid {
    background: #1c2674;
    color: #ffffff;
    padding: 3px 5px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-paid:hover {
    background: #1c2674;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 2px 4px;
}


/* =========================
   UNPAID
========================= */

.btn-unpaid {
    background: #eef1f7;
    color: #161b4e;
    padding: 3px 5px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-unpaid:hover {
    background: #eef1f7;
    border: 1px solid #161b4e;
    padding: 2px 4px;
}


/* =========================
   REMIND
========================= */

.btn-remind {
    background: #eef1f7;
    color: #161b4e;
    padding: 3px 5px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-remind:hover {
    background: #eef1f7;
    border: 1px solid #161b4e;
    padding: 2px 4px;
}


/* =========================
   DANGER
========================= */

.btn-danger {
    background: #d9534f;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
}

.btn-danger:hover {
    background: #b52b27;
}


/* =========================
   SUCCESS
========================= */

.btn-success {
    background: #2e8b57;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    margin: 0 5px;
}

.btn-success:hover {
    background: #257148;
}


/* =========================
   ACTION BUTTON GROUPS
========================= */

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.actions-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.actions-wrap form {
    margin: 0;
    display: inline-flex;
}

.actions-wrap .btn-edit,
.actions-wrap .btn-delete,
.actions-wrap button {
    height: 26px;
    min-width: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1;
}

.inline-form {
    display: inline;
    margin: 0;
}


/* =========================
   FULL WIDTH
========================= */

.full-width {
    width: 100%;
}


/* =========================
   SAVE BUTTON
========================= */

.save-btn {
    margin-top: 30px;
}


/* =========================
   LOGIN BUTTON
========================= */

.login-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}


/* =========================
   NAVIGATION / UNIT BUTTONS
========================= */

.unit-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.unit-btn {
    padding: 8px 14px;
    border-radius: 20px;
    background: #eef1f7;
    color: #1c2674;
    text-decoration: none;
    font-size: 14px;
}

.unit-btn.active {
    background: #1c2674;
    color: #ffffff;
}


/* =========================
   PARENT GIRL SELECTOR
========================= */

.parent-girl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.parent-girl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 15px;

    background: #f5f6fa;
    color: #4b5270;

    border: 1px solid #e1e4ec;
    border-radius: 10px;

    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 500;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.parent-girl-button:hover {
    background: #eef1f7;
    border-color: #cfd4e2;
    color: #1c2674;
    transform: translateY(-1px);
}

.parent-girl-button.active {
    background: #1c2674;
    border-color: #1c2674;
    color: #ffffff;
    font-weight: 600;
}


/* =========================
   SESSION BUTTONS
========================= */

.session-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.session-btn {
    padding: 6px 10px;
    border-radius: 8px;
    background: #eef1f7;
    color: #1c2674;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.session-btn:hover {
    background: #e3e8f3;
}

.session-btn.active {
    background: #1c2674;
    color: #ffffff;
    font-weight: 600;
}


/* =========================
   GIRL NAVIGATION
========================= */

.girl-nav-arrows {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.girl-nav-arrows a {
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    background: #eef1f7;
    font-size: 13px;
    transition: 0.2s ease;
}

.girl-nav-arrows a:hover {
    background: #e3e8f3;
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top-row {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}


/* =========================
   BUTTON ROW
========================= */

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}


/* =========================
   SKILLS BUILDER BUTTON
========================= */

.skills-builder-card button {
    margin-top: 10px;
    width: 100%;
}


/* =========================
   STATUS / ACTION BUTTON
========================= */

.btn-delete-note {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #b33;
}

.btn-delete-note:hover {
    color: #d00;
}