.vsd-3285 .vsd-element.vsd-element-f76980b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .vsd-element-6fb471e *//* Context Notification Styles */
.context-notification {
    background-color: #f9f9f9;
    border: 1px solid #007bff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.context-notification h2 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #007bff;
}

.context-notification ul {
    padding: 0;
    list-style: none;
    color: #333;
}

.context-notification button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.context-notification button:hover {
    background-color: #0056b3;
}

/* Calendar Styles */
.calendar-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.calendar {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    background-color: white;
    min-height: 500px; /* Increased height for the calendar */
}

.header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.controls {
    display: flex;
    align-items: center;
}

.controls button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.controls button:hover {
    opacity: 0.8;
}

.year-select {
    margin: 0 10px;
    padding: 5px;
    border-radius: 5px;
}

/* Weekdays */
.weekdays {
    display: flex;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}

.weekdays div {
    flex: 1;
    font-weight: bold;
    color: #333;
}

/* Days */
.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
}

.day {
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.day:hover {
    background-color: rgba(173, 216, 230, 0.2);
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .calendar {
        min-height: 400px; /* Adjusted height for smaller screens */
    }

    .controls button {
        font-size: 18px; /* Smaller button font for better fitting */
    }

    .month {
        font-size: 18px; /* Smaller month font */
    }

    .day {
        padding: 15px; /* Reduced padding for days */
    }
}

@media (max-width: 480px) {
    .calendar {
        min-height: 350px; /* Further reduced height for very small screens */
    }

    .controls button {
        font-size: 16px; /* Smaller button font for very small devices */
    }

    .month {
        font-size: 16px; /* Smaller month font for very small devices */
    }

    .day {
        padding: 10px; /* Further reduced padding for days */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .vsd-element-bddb294 *//* Notification Styles */
.notification {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text color */
    font-size: 16px;
    font-weight: 500;
    border-left: 4px solid #007bff; /* Blue left border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect */
.notification:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    background-color: #e9ecef; /* Darker background on hover */
}/* End custom CSS */