/* styles.css content */

body {
    font-family: Arial, sans-serif;
}

main {
    text-align: center; /* Centering the content */
}

#login-section,
#signup-section {
    margin: 10px;
    padding: 20px;
}

input[type="text"],
input[type="password"] {
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* General body styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header content styling */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Navigation styling */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 0 10px;
}

nav a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    background-color: #ddd; /* Grey background for the buttons */
    color: black;
    border-radius: 4px; /* Rounded corners for the buttons */
}

nav a:hover {
    background-color: #ccc; /* Darker grey on hover */
}

h1 {
    margin: 0; /* Adjust as needed */
}

/* ... other styles */
/* Popup styling */
.popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: gray;
    border-radius: 50%;
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 1000; /* Ensure it's above other content */
    overflow: hidden; /* Ensures nothing spills out of the circle */


}
.popup-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Full width of the parent */
    height: 100%; /* Full height of the parent */
    text-decoration: none; /* Removes underline from links */
    color: inherit; /* Takes color from parent if not specified */
}

/* Close button styling */
.closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
}
.button {
    display: inline-block;
    padding: 10px 15px;
    margin: 10px 0;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    text-align: center;
}

.button:hover {
    background-color: #0056b3;
}

/* ... existing styles ... */

/* Specific style for the Log Out button-link */
#logout-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f44336; /* Red color for log out to indicate an action like logging out */
    color: white;
    text-decoration: none;
    border-radius: 4px; /* Rounded corners for the button */
    position: absolute; /* Position it absolutely within the header */
    right: 20px; /* 20px from the right */
    top: 20px; /* Align it with the top of the header */
}

#logout-button:hover {
    background-color: #d32f2f; /* Darker shade of red for hover effect */
}

/* Ensure the header is positioned relatively so the button can be positioned absolutely in relation to it */
header {
    position: relative; /* Add this if not already present */
    /* ... other styles ... */
}

/* Update the nav styles to allow for absolute positioning of the logout button */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Context for absolute positioning of the logout button */
}
/* styles.css content */

/* Top bar styling */
.top-bar {
    background-color: #f8f8f8; /* Light background color */
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Separator line */
}

/* Search form styling */
.search-form {
    display: flex;
    justify-content: center; /* Center the search bar */
    align-items: center;
}

.search-form input[type="text"] {
    padding: 5px;
    margin-right: 10px; /* Space between input and button */
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-form button {
    padding: 5px 10px;
    background-color: #007bff; /* Blue background */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

/* ... other styles ... */


#togglePasswordIcon, #togglePasswordIconRepeat {
  cursor: pointer;
  font-size: 20px; /* Adjust size as needed */
  user-select: none; /* Prevent text selection */
}
/* Additional styling here */

