/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 04 2025 | 17:14:42 */
/* Styl przycisku 3D */
.button-3d {
    display: inline-block;
    background: linear-gradient(145deg, #4cafef, #005f99); /* Gradient tła */
    color: white; /* Kolor tekstu */
    font-size: 14px; /* Rozmiar tekstu */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 15px 30px; /* Wewnętrzne marginesy */
    border-radius: 8px; /* Zaokrąglone rogi */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); /* Cień dla efektu 3D */
    transition: all 0.3s ease; /* Płynne przejścia */
}

/* Efekt hover */
.button-3d:hover {
    transform: translateY(-5px); /* Przesunięcie do góry */
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4); /* Wzmocnienie cienia */
}

/* Efekt po kliknięciu */
.button-3d:active {
    transform: translateY(2px); /* Przesunięcie w dół */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2); /* Zmniejszenie cienia */
}
