@tailwind/base;
@tailwind/components;
@tailwind/utilities;

/* Add this CSS to style your difficulty selection page */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light gray background color */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    background-color: #ffffff; /* White container background color */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Box shadow for container */
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.difficulty-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.btn.btn-difficulty:hover {
    background-color: #6be481; /* Darker green on hover */
}


/* Style for difficulty selection page */
body {
    background-color: #f0f0f0;
    text-align: center;
    font-family: Arial, sans-serif;
}

h1 {
    color: #333;
    margin-top: 20px;
}

#difficulty-selection {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 400px;
}

h2 {
    color: #333;
}

#difficulty-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #77828f;
}

#prompt-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for transparency */
    justify-content: center;
    align-items: center;
    z-index: 1; /* Ensure the overlay is on top of other elements */
}

#prompt {
    background: #fff; /* Adjust the background color of the prompt */
    padding: 20px;
    border-radius: 5px;
    z-index: 2; /* Ensure the prompt is above the overlay */
}
