/* Root Variables */
:root {
    --primary-color: #ffcc00;
    --background-dark: #1a1a1a;
    --background-light: #2e2e2e;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --font-family: 'Montserrat', sans-serif;
    --highlight-color: #ffd633;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-color);
}

input[type="text"],
input[type="email"],
select {
    width: 95%;
    padding: 14px 8px; /* Increased padding */
    margin-bottom: 20px;
    background-color: var(--background-dark);
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input::placeholder {
    color: var(--text-muted);
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
}

button {
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: var(--highlight-color);
}

/* Error Message Styles */
.error-message {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}


/* General Body and Layout Styles */
body, html {
    margin: 0;
    min-height: 100vh;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
}

header, section {
    padding: 20px 20px;
    max-width: 900px;
    margin: 60px auto;
    background-color: var(--background-light);
    color: var(--text-color);
    border-radius: 8px;
    margin-bottom: 30px;
}

h1, h2 {
    color: var(--primary-color);
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

ul {
    list-style-type: disc;
    margin-left: 40px;
}

ul li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Table Style for Cookie Data */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--background-dark);
    border: 1px solid var(--text-muted);
    border-radius: 5px;
}

table th, table td {
    padding: 15px;
    text-align: left;
    color: var(--text-muted);
}

table th {
    background-color: var(--primary-color);
    color: var(--background-dark);
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: var(--background-light);
}

table tr:hover {
    background-color: var(--highlight-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: var(--background-light);
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--highlight-color);
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {



    table th, table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    header, section {
        padding: 30px 20px;
        margin: 40px auto;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1rem;
        color: #0077b5;
    }
    

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-color);
    }

    p, label, input, select, button {
        font-size: 1rem;
    }

    input[type="text"],
    input[type="email"],
    select {
        padding: 12px 15px; /* Adjusted padding for smaller screens */
    }
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

