.orange-styled {
    background: linear-gradient(135deg, #FF914D, #FF6D2A, #E65C1A); /* Sfumature di arancione */
    border: none;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.orange-styled:hover {
    background: linear-gradient(135deg, #FF6D2A, #FF914D, #FF914D);
}

.orange-styled:active {
    background: linear-gradient(135deg, #E65C1A, #FF6D2A, #FF914D);
}

.text-orange {
    color: #ee7741;
    text-decoration: none;
}





.text-orange:hover,
.text-orange:focus {
    color: #FF914D;
    text-decoration: underline;
}

.btn.text-orange:hover,
.btn.text-orange:focus {
    color: #FF914D;
    text-decoration: underline;
}

.link-hover:hover,
.link-hover:focus {
    color: #FF914D;
    text-decoration: underline;
}





/* Default style for menu links */
.menu-link {
    color: whitesmoke; /* Text color black */
    background: linear-gradient(135deg, #1c1717, rgba(12, 12, 12, 0.51), rgba(10, 10, 10, 0.68));
    border: 1px solid #ccc; /* Border to define the buttons */
    border-radius: 5px;
    text-align: center;
    text-decoration: none; /* Remove underline */

}

/* Hover effect: change to white text on dark background */
.menu-link:hover, .menu-link:focus, .menu-link:active {
    background-color: #333; /* Dark background */
    color: white; /* White text */
    border-color: #333;
}

.dark-title-class {
    background-color: #343a40;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Bangers', 'Roboto', Helvetica, Verdana, sans-serif;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dark-title-class:hover {
    background-color: #495057;
}

.text-ciano {
    color: #00b8d4;
    text-decoration: none;
}

.text-ciano:hover,
.text-ciano:focus {
    color: #00b8d4;
    text-decoration: underline;
}