/* © 2025 Romar Jabez */

button {
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.btn {
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.8);
    font-size: 14px;
}

/*
.btn::before {
    content: "";
}

@media (max-width: 680px) {
    .btn {
        font-size: 0;
    }

    .btn::before {
        content: "test";
        font-size: 13px;
    }
}
*/

.btn:hover {
    filter: brightness(0.9);
}

.btn:active {
    filter: brightness(0.6);
}

.btn.main {
    background-color: #364436;
    color: white;
}

.btn.main:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(54, 68, 54, 0.5);
}

.btn.danger {
    background-color: #b64545;
    color: white;
}

.btn.danger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(182, 69, 69, 0.5);
}

.btn.secondary {
    background-color: #ffffff;
    color: #364436;
}

.btn.secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.btn.secondary:active {
    background-color: #e0e0e0;
}

.btn.disabled {
    filter: brightness(0.6);
    cursor: not-allowed
}