/* Basic styling for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5; /* Set overall background color */
     /* background : url(./imgs/bg1.jpg);  the image used for the background*/  
    margin: 0;
    padding: 20px;
}

/* Nothing works as it should
on my machine the pages are displayed differently and the styles actually work. i will put screenshots on my report that will attest to this comparing the results from my machine with the results from this platform*/

/* Centered content using flexbox */
.centered-stuff {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px;
}
/* Styles for the container div */
.container {
    max-width: 600px; /* Set maximum width for content */
    margin: 0 auto; /* Center container horizontally */
    background-color: #ffffffe8; /* set up the color to be transparent */
    padding: 20px; /* Padding around the container */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.493); /* set up border shadow for beautification resons */
}
/* Title styling */
.title {
    text-align: center;
    color: #ff0000;
    background-color: #f9f9f9f1; 
    /*added bg color for the title so it 
    doesn't get too crowded by the page bg*/
    padding: 5px;
    overflow: hidden;
    margin-bottom: 5px;  /* Spacing at the bottom of the title */
}
/* Heading 1 styling */
h1 {
    text-align: center;
    color: #ff0000;

}
/* Paragraph styling */

p {
    margin-bottom: 20px; /* Spacing at the bottom of paragraphs */
    color: #0f0f0f; /* Paragraph text color */
    /* */
}
/* Styles for a list of options */
.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Individual option styling */
.option {
    padding: 10px;
    border: 1px solid #0f0f0f;
    border-radius: 4px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* Hover effect on options */
.option:hover {
    background-color: #f9f9f9;
}

/* Heading 2 styling */

h2 {
    text-align: center;
}
/* Styling for input groups */
.input-group {
    margin: 10px 0;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 8px 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-group button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
/* Button styles */
.btn {
    background-color: #4CAF50;
    color: white;
}

.btn:hover {
    background-color: #45a049;
}


/* Styling for the Collapsible Menu */
.collapsible {
    background-color: #77a359bd; 
    color: #202020;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.active, .collapsible:hover {
    background-color: #f1aaaa88;
}
/* Collapsible content styling */
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f181;
}

.category-buttons {
    background-color: rgb(209, 248, 69);
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

/* Button Styles */
button {
    background-color: rgb(209, 248, 69);
    color: black;
    margin-bottom: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
}

.grey-button {
    background-color: rgb(209, 248, 69);
}

.grey-button:hover {
    background-color: pink;
}

.grey-button:active {
    background-color: red;
}


/* new stuff */


