body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

main {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-navigation button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

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

#currentMonthYear {
    margin: 0;
    font-size: 24px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.calendar-grid div {
    background-color: #e9e9e9;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.calendar-grid .day-header {
    background-color: #d0d0d0;
    font-weight: bold;
}

.calendar-grid .day-number {
    font-size: 1.2em;
    font-weight: bold;
    align-self: flex-start;
}

.calendar-grid .day.current-month {
    background-color: #f9f9f9;
}

.calendar-grid .day.selected {
    background-color: #007bff;
    color: white;
}

.calendar-grid .day.has-schedule {
    border: 2px solid #28a745;
}

.schedule-section {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.schedule-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.schedule-form input[type="time"],
.schedule-form input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.schedule-form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.schedule-form button:hover {
    background-color: #218838;
}

#scheduleList {
    list-style: none;
    padding: 0;
}

#scheduleList li {
    background-color: #f0f0f0;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#scheduleList li .schedule-text {
    flex-grow: 1;
}

#scheduleList li .delete-schedule {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

#scheduleList li .delete-schedule:hover {
    background-color: #c82333;
}


/* Partnership Inquiry Form Styles (Stylish Version) */
.partnership-inquiry {
    max-width: 600px; /* Slightly narrower for focus */
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px; /* Softer corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Deeper, softer shadow */
    border: 1px solid #e0e0e0;
}

.partnership-inquiry h2 {
    text-align: center;
    color: #34495e; /* Darker, more professional blue-grey */
    margin-bottom: 25px;
    font-size: 2em;
    font-weight: 600;
}

.partnership-inquiry p {
    text-align: center;
    margin-bottom: 30px;
    color: #7f8c8d; /* Muted grey for description */
    font-size: 1.1em;
    line-height: 1.6;
}

.partnership-inquiry form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased spacing between form groups */
}

.partnership-inquiry .form-group {
    display: flex;
    flex-direction: column;
}

.partnership-inquiry label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e; /* Matches heading color */
    font-size: 1em;
}

.partnership-inquiry input[type="text"],
.partnership-inquiry input[type="email"],
.partnership-inquiry textarea {
    padding: 12px 15px; /* More padding */
    border: 1px solid #dcdcdc; /* Lighter border */
    border-radius: 8px; /* Consistent border radius */
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.partnership-inquiry input[type="text"]:focus,
.partnership-inquiry input[type="email"]:focus,
.partnership-inquiry textarea:focus {
    border-color: #3498db; /* Blue focus color */
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2); /* Subtle glow effect */
    outline: none;
}

.partnership-inquiry textarea {
    resize: vertical;
    min-height: 120px; /* Taller textarea */
}

.partnership-inquiry button[type="submit"] {
    background-color: #3498db; /* A vibrant blue */
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    align-self: center; /* Center the button */
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.partnership-inquiry button[type="submit"]:hover {
    background-color: #2980b9; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

/* Disqus Comment Section Styles */
.comment-section {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.comment-section h2 {
    text-align: center;
    color: #34495e;
    margin-bottom: 25px;
    font-size: 2em;
    font-weight: 600;
}