/* Custom CSS for osTicket modernization */

/* Import a modern font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Apply the new font to the body */
body {
    font-family: 'Roboto', sans-serif;
}

/* Style for the main buttons on the landing page */
.button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
}

.button.blue {
    background-color: #007bff;
    border: 1px solid #007bff;
}

.button.blue:hover {
    background-color: #0056b3;
}

.button.green {
    background-color: #28a745;
    border: 1px solid #28a745;
}

.button.green:hover {
    background-color: #1e7e34;
}
