.action-btn {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;

    width: 100%;
    max-width: 664px;
    height: 48px;

    /* Green/500 */
    background: var(--green-500);
    border-radius: 16px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;

    /* Text styles */
    font-family: 'Lufga';
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;

    /* White */
    color: var(--white);

    /* Remove default button styles */
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--green-600);
}

.action-btn:active {
    background: var(--green-700);
}

.action-btn:focus {
    background: var(--green-500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.reset-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* padding: 8px 16px; */
    /* height: 40px; */
    background: var(--green-25);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-700);
    text-decoration: none;
    cursor: pointer;
}

.reset-button:hover {
    background: var(--green-50);
    color: var(--green-500);
    text-decoration: none;
}

.btn-edit-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100px;
    height: 40px;
    padding: 8px 32px;
    background: var(--green-500);
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    margin-top: 50px;
}

.btn-edit-info:hover {
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
}

.form-actions-edit {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    padding: 8px 32px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    color: var(--gray-700);
    cursor: pointer;
    text-decoration: none;
}

.btn-cancel:hover {
    background: var(--gray-200);
    color: var(--gray-800);
    text-decoration: none;
}

.btn-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    padding: 8px 32px;
    background: var(--green-500);
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease, background 0.2s ease;
}

.btn-save:hover {
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
}

.btn-save:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.btn-save:disabled:hover {
    background: var(--green-500);
}

.btn-start-request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 219px;
    height: 24px;
    padding: 8px 16px;
    background: var(--green-500);
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
}

.btn-start-request:hover {
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
}

.btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 6px 10px 6px 16px;
    background: var(--green-25);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-700);
    cursor: pointer;
    text-decoration: none;
}

.btn-reset:hover {
    background: var(--green-50);
    color: var(--green-500);
    text-decoration: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--green-500);
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
}

.btn-primary:disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-primary:disabled:hover {
    background: var(--gray-200);
    color: var(--gray-400);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--green-200);
    border: none;
    border-radius: 16px;
    color: var(--green-700);
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--green-300);
    color: var(--green-700);
    text-decoration: none;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    border-color: var(--gray-200);
    opacity: 0.6;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #dc2626;
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Lufga';
}

.btn-danger:hover {
    background: #b91c1c;
    color: var(--white);
    text-decoration: none;
}

.btn-danger:disabled,
.btn-danger.disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Badge-style buttons for confirm/reject actions */
.btn-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--green-500);
    border-radius: 16px;
    color: var(--green-500);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.btn-confirm:hover {
    background: var(--green-50);
    color: var(--green-600);
    border-color: var(--green-600);
    text-decoration: none;
}

.btn-confirm .material-symbols-outlined {
    font-size: 16px;
    color: var(--green-500);
}

.btn-reject {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--red);
    border-radius: 16px;
    color: var(--red);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.btn-reject:hover {
    background: var(--gray-50);
    color: var(--error-red);
    border-color: var(--error-red);
    text-decoration: none;
}

.btn-reject .material-symbols-outlined {
    font-size: 16px;
    color: var(--red);
}

.btn-confirm.btn-disabled,
.btn-reject.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--white);
}

.btn-confirm.btn-disabled:hover,
.btn-reject.btn-disabled:hover {
    background: var(--white);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--green-25);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    color: var(--gray-600);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-text:hover {
    color: var(--green-500);
    background: var(--green-50);
    text-decoration: none;
}

.btn-reset-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 155px;
    height: 40px;
    padding: 8px 16px;
    background: var(--green-25);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
}

.btn-reset-filters:hover {
    background: var(--green-50);
    text-decoration: none;
}