/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.options {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.button:hover {
    background-color: #555;
}

.dashboard-buttons {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dashboard-buttons .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    text-align: center;
    background-color: #4e73df;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 200px; /* Ensure buttons have the same width */
}

.dashboard-buttons .btn:hover {
    background-color: #2e59d9;
}

.dashboard-buttons .btn:active {
    background-color: #1e44a1;
}