/*buttons.css*/

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background-color: #696969;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 10px; /* Отступ между кнопками */
    margin-top: 20px;
    margin-bottom: 20px;
    transition: background-color 0.4s, transform 0.4s, box-shadow 0.4s;
    box-shadow:
    inset 0 -3em 3em rgba(0, 0, 0, 0.1),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background-color: #333;
    color: #ffffff;
    transform: scale(1.01) translateY(-1px);
    box-shadow:
    inset 0 -3em 3em rgba(0, 0, 0, 0.1),
    0.5em 0.5em 2em rgba(0, 0, 0, 0.4);
}

.btn.disabled, .btn[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
    pointer-events: none; /* Запрещает клик по кнопке */
}
