/* styles.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #000; /* Default to dark mode */
    color: #fff;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 800px;
    padding-top: 20px;
}

.suggestion {
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #fff; /* Default to white text */
}

.material-icons {
    font-size: 24px;
    margin-right: 10px;
}

/* General paragraph styling */
p {
    font-size: 16px;
    margin: 5px 0;
}

/* Preview Button Styling */
.preview-button {
    display: block;
    width: 80%;
    margin: 0 auto 30px;
    padding: 15px 20px;
    text-align: center;
    background-color: #fff; /* White background for dark mode */
    color: #000;
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.preview-button:hover {
    background-color: #f0f0f0;
}

/* Light and Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
        color: #fff;
    }

    h2 {
        color: #fff;
    }

    .preview-button {
        background-color: #fff;
        color: #000;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: #fff;
        color: #000;
    }

    h2 {
        color: #000;
    }

    .preview-button {
        background-color: #000; /* Black background for light mode */
        color: #fff;
    }

    .preview-button:hover {
        background-color: #222;
        color: #fff;
    }
}

.contact-button {
    background-color: #007BFF; /* Blue background */
    color: white; /* White text */
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block; /* Same display style as the Preview button */
    font-size: 16px;
    border-radius: 4px;
    margin-top: 20px; /* Adjust spacing */
}

.contact-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


.contact-button {
    display: block;
    width: 80%;
    margin: 0 auto 30px;
    padding: 15px 20px;
    text-align: center;
    background-color: #007BFF; /* Blue background */
    color: white; /* White text */
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.contact-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}