.logo {
    height: 200px;
    width: 200px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status-bar {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 20px;
    height: auto;
}

.time-box {
    position: relative;
    display: inline-block;
    width: 60px; 
    height: 40px;
}

.time-background {
    width: 100%;
    height: 100%;
    display: block;
}

.time-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #000; 
    pointer-events: none; 
}

.nav-link {
    color: #fff;
}

.toggle-section {
    padding: 20px;
}

.nav {
    padding: 10px;
}


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}


.navbar-container {
    display: flex;
    justify-content: center;
    margin: 20px 0; 
}

.rounded-menu-bar {
    background-color: black; 
    border-radius: 25px;
    padding: 10px 20px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}


.nav {
    margin: 0;
    padding: 0;
    list-style-type: none; 
}

.nav-item {
    display: inline-block;
    margin: 0 10px;
}

.nav-link {
    color: white;
    background-color: black;
    padding: 10px 20px;
    border-radius: 5px; 
    transition: all 0.3s ease; 
    text-decoration: none; 
}

.nav-link:hover {
    color: black; 
    background-color: white;
}


.nav-link:active {
    color: black; 
    background-color: white; 
    font-weight: bold; 
}


.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(59, 100, 189);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: green;
}

input:checked + .slider:before {
    transform: translateX(26px); 
}


.section-heading {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.calendar img {
    width: 100%;
    height: auto;
}

.notice-board {
    background-color: black;
    font-size: 16px;
}

.notice-board p {
    margin: 20px 10px;
    color: white;
    left: 50px;
}

.border-end {
    border-right: 4px;
}

.d-flex {
    padding: 10px;
}

.text-white {
    padding: 10px;
}

.footer {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.footer .container {
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.container {
    padding-left: 3rem; 
    padding-right: 3rem; 
}

.custom-image-size {
    max-width: 90%; 
    height: auto; 
}

.row.g-2 {
    --bs-gutter-x: 0.5rem; 
    --bs-gutter-y: 0.5rem; 
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    max-width: 200px;
    margin: 20px auto;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.calendar-header {
    grid-column: span 7;
    color: black;
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.day {
    padding: 5px; 
    border: 1px;
    border-radius: 2px;
    font-size: 12px;
}

.day-header {
    font-weight: bold;
    font-size: 12px; /* Match day cells' font size */
}

.today {
    font-weight: bold;
    border: 1px solid black;
    border-radius: 50%;
    padding: 4px;
}

.calendar-image {
    position: relative;
    width: 300px; /* Adjust as needed */
    height: 300px;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calendar-dates {
    position: absolute;
    top: 10px; /* Adjust to align */
    left: 20px; /* Adjust to align */
    padding: 5px;
    border-radius: 8px;
    font-size: 12px; /* Adjust size */
  }

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.form-section,
.roles-section {
    width: 40%;
    margin: 0% 4.5%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.idea-box {
    width: 40%;
    background-color: lightgray;
    border: 4px solid #000;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: -200px 0px 100px 613px;
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"],
form input[type="file"],
form button,
.idea-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid gray;
    border-radius: 5px;
    box-sizing: border-box;
}

.idea-box textarea {
    height: 100px;
}

form button,
.idea-box button {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    width: 30%;
    margin-left: 35%;
    border-radius: 20px;
}

form button:hover,
.idea-box button:hover {
    background-color: white;
    color: black;
}

.roles-description ul {
    list-style: none;
    padding: 0;
}

.roles-description ul li {
    margin-bottom: 10px;
}

.footer {
    margin-top: 40px;
}

.roles-section {
    margin-bottom: 230px;
    background-color: #000;
    color: #fff;
}

.form-section {
    background-color: gray;
}

.idea-box button{
    margin-left: 250px;
}

#portfolio {
    background-color: #fff;
}

.Join {
    color: black;
}

.list {
    font-size: large;
    margin: 0px 10%;
    line-height: 200%;
}

.tech, .non-tech {
    font-size: x-large;
}

label {
    color: #000;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Dark mode styles */
body.dark-mode {
    background-color: #121212;
    color: #f5f5f5;
}

/* Dark mode navbar */
body.dark-mode .navbar {
    background-color: #121212;
}

body.dark-mode .navbar .nav-link {
    color: #fff;
    
}

body.dark-mode .navbar .nav-link :hover{
    color: #121212;
    
}

body.dark-mode .rounded-menu-bar :hover {
    color: #121212;
}

body.dark-mode .rounded-menu-bar {
    background-color: #121212;
}

/* Dark mode search bar */
body.dark-mode .searchbar input {
    background-color: #333;
    color: #fff;
    border-color: #555;
}

body.dark-mode .searchbar input::placeholder {
    color: #aaa;
}

/* Dark mode toggle container */
body.dark-mode .toggle-container {
    background-color: #121212 !important;
}

/* Dark mode for greeting section */
body.dark-mode .greeting-section {
    background-color: #121212;
    color: #fff;
}

/* Dark mode for timeline section */
body.dark-mode .timeline-section {
    background-color: #121212;
}

body.dark-mode .timeline-header h2 {
    background-color: #121212;
    color: #fff;
}

body.dark-mode .timeline-header::before,
body.dark-mode .timeline-dots::before {
    background-color: #555;
}

body.dark-mode .dot {
    background-color: #fff;
}

body.dark-mode .dot-info {
    color: #fff;
}

/* Dark mode for gallery section */
body.dark-mode .gallery-section {
    background-color: #121212;
}

body.dark-mode .gallery-header h2 {
    background-color: #121212;
    color: #fff;
}

body.dark-mode .gallery-header::before {
    background-color: #555;
}

/* Dark mode image captions or borders */
body.dark-mode .gallery-slider img {
    border: 1px solid #121212;
}

/* Dark mode footer adjustments */
body.dark-mode .footer {
    background-color: #121212 !important;
}

/* Adjust any other specific elements for the About page */
body.dark-mode .about-content h2,
body.dark-mode .about-content h3 {
    color: #fff;
}

body.dark-mode .about-content .card {
    background-color: #121212;
    color: #f5f5f5;
    border-color: #555;
}

body.dark-mode .about-content .card-header {
    background-color: #121212;
    border-color: #555;
}

/* Dark mode for team member profiles if present */
body.dark-mode .team-member {
    background-color: #121212;
    border-color: #555;
}

body.dark-mode .team-member h4 {
    color: #fff;
}

/* Smooth transition for dark mode toggle */
body, body.dark-mode, 
body .navbar, body.dark-mode .navbar,
body .searchbar input, body.dark-mode .searchbar input,
body .greeting-section, body.dark-mode .greeting-section,
body .timeline-section, body.dark-mode .timeline-section,
body .gallery-section, body.dark-mode .gallery-section,
body .about-content, body.dark-mode .about-content {
    transition: all 0.3s ease;
}