/*.app-button {
    width: 100%;
    background: #007D65;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition:all 0.22s cubic-bezier(.15, .9, .28, 1);
}*/


.app-button {
    background: #007D65;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;

    transition: all 0.22s cubic-bezier(.15, .9, .28, 1);
    text-align: center;
    margin-bottom: 10px
}

.app-button-ghost {
    border: 1.5px solid #007D65;
    background: transparent;
    color: #007D65;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 10px
}

.app-button-ghost-danger {
    border: none;
    background: #f43333;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s 
ease;
    margin-bottom: 10px;
}

.app-button-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.22s cubic-bezier(.15, .9, .28, 1);
    border: 1.6px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    color: #0f1724;
    margin-bottom: 10px
}




.app-button:hover {
    background: #006855;
}

.app-button-inline:hover {
    background: #006855;
    color: white;
}

.app-button-ghost:hover {
    background: #007D65;
    color: #fff;
    border-color: #007D65;
}

.app-button-secondary {
    background: #f1f3f4;
    color: #333;
}

.app-button-secondary:hover {
    background: #e5e7e8;
}


.app-button-borderless {
    text-align: center;
    margin-top: 15px;
    color: #007D65;
    font-weight: 600;
    font-size: 0.9rem;
}

button:disabled {
    pointer-events: none;
    opacity: 0.5;
}