/* Базовая кнопка */
.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none !important;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s ease-out,
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Варианты цветов */
.btn-primary {
    background-color: #007bff;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background-color: #218838;
}

/* Кнопка-ссылка */
.btn-link {
    padding: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #007bff;
    text-decoration: underline !important;
    background: none;
    box-shadow: none;
}

.btn-link:hover {
    color: #0056b3;
    transform: none;
}

/* Модификатор ширины */
.btn-wide {
    display: block;
    width: 80%;
    max-width: 300px;
}