/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa; /* Light, soothing background color */
}

/* Header with Menu Bar */
header {
    background-color: #00796b; /* Deep teal color */
    color: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Site Title */
.site-title {
    text-align: center;
    margin: 20px 0;
}

.site-title h1 {
    background-color: #004d40; /* Darker teal color */
    color: white;
    padding: 15px;
    border-radius: 10px;
    border: 3px solid #004d40; /* Matching border color */
    display: inline-block;
}

/* Search Container */
.search-container {
    text-align: center;
    margin: 20px 0;
}

.search-container input[type="text"] {
    padding: 10px;
    width: 200px;
    border: 1px solid #00796b;
    border-radius: 5px;
}

.search-container button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-container button:hover {
    background-color: #004d40;
}

/* Group List */
.group-list {
    text-align: center;
}

.group-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.group-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.group-card h2 {
    margin: 0 0 10px 0;
    color: #004d40; /* Darker teal color */
}

.group-card .description,
.group-card .admin,
.group-card .info {
    font-size: 14px;
    color: #555;
}

/* Footer */
footer {
    background-color: #00796b; /* Matching footer color */
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 5px 0;
}
