body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
}

/* --- TOP COVER IMAGE --- */
.top-cover img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown hidden content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    border: 1px solid #ddd;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 10;
}

/* Dropdown links */
.dropdown-content a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    color: #444;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
    color: #0077ff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Navigation Panel */
.nav-panel {
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    font-size: 20px;
    font-weight: bold;
}

.nav-panel a {
    text-decoration: none;
    color: #444;
    transition: 0.2s ease-in-out;
}

.nav-panel a:hover {
    color: #0077ff;
}

/* --- PAGE LAYOUT --- */
.container {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.left-section {
    flex: 2;
    padding-right: 20px;
}

/* Right Panel */
.right-panel {
    width: 30%;
    padding: 20px;
    background-color: #fafafa;
    border-left: 2px solid #eee;
    height: 100%;
}

/* Calendar Styles */
#calendar {
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-header h2 {
    margin: 0;
}

.calendar-grid {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.calendar-grid div {
    padding: 8px 0;
}

.calendar-grid .day-name {
    font-weight: bold;
}

.calendar-grid .day {
    background: #f3f3f3;
    border-radius: 5px;
    transition: 0.2s;
}

.calendar-grid .day:hover {
    background: #dce8ff;
    cursor: pointer;
}

/* Highlight today's date */
.calendar-grid .today {
    background: #ffcccc !important;
    border: 2px solid red;
    font-weight: bold;
    color: red;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}

.day .solar {
    font-size: 18px;
    font-weight: bold;
}

.day .lunar {
    font-size: 12px;
    color: #666;
    margin-top: -3px;
}

/* --- FORM STYLING --- */
/* input {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 12px;
    background: #0066ff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #004ecb;
} */

/* --- RESULT PAGE --- */
.result-container {
    text-align: center;
    padding: 40px;
}

.element {
    color: #e74c3c;
    font-weight: bold;
}
