/* General Styles */
canvas {
    max-height: 600px;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
}

.title-section img {
    height: 200px; /* Adjust to your desired size */
    width: auto; /* Maintain aspect ratio */
    max-width: none; /* Prevent constraints */
    max-height: none; /* Prevent constraints */
    object-fit: contain; /* Optional: Ensure it scales cleanly */
}


.header h1 {
    font-size: 24px;
    margin: 0;
}

.header .button-section {
    display: flex;
    gap: 10px;
}

.header button {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}
.link-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align links to the left */
    margin-top: 20px; /* Adds space between canvas and links */
    margin-left: 10px; /* Adjust left spacing */
}

.link-container a {
    font-size: 14px;
    text-decoration: none;
    color: #007BFF;
    margin: 5px 0; /* Space between links */
}




/* Optional: If you want to control their positioning */
.bottom-left-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
}


.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#yearSelection {
    padding: 5px;
    font-size: 14px;
    cursor: pointer;
}


.navigation button {
    margin: 0 10px;
}

.month-label {
    font-size: 18px;
    font-weight: bold;
}

/* Quick Create Form Overlay */
.quick-create-overlay {
    position: fixed;
    top: 0;
    right: -400px; /* Start hidden to the right */
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    z-index: 1000;
}

/* Quick Create Form Content */
.quick-create-content h2 {
    margin-top: 0;
}

.quick-create-content label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.quick-create-content input,
.quick-create-content select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.quick-create-content input:required:invalid,
.quick-create-content select:required:invalid {
    border-color: red;
}

.form-buttons {
    display: flex;
    gap: 10px;
}

.form-buttons button {
    flex: 1;
    padding: 8px;
    cursor: pointer;
}
