/* Calendar App Custom Styles */

/* Sidebar Category Styling */
.categories-sidebar {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    overflow: hidden;
}

.categories-header {
    background-color: #000000;
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.category-accordion > button {
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    border: none;
    background-color: #f2efed;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #000000;
}

.category-accordion > button:hover {
    background-color: #e5e5e5;
    color: #000000;
}

.category-accordion > button.active {
    background-color: #333333;
    color: #000000;
}

.category-accordion > button i {
    transition: transform 0.3s ease;
}

.category-accordion > button i.rotate-180 {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #F4E3D9;
    color: #000000;
    border: 1px solid #006366 !important;
}

.category-content ul {
    padding: 0.5rem 1rem;
    margin: 0;
    list-style-type: none;
}

.category-content ul li {
    color: #000000;
    padding: 6px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Category indicators */
.category-indicator {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Category indicator colors */
.bg-trip-blue {
    background-color: #3b82f6 !important; /* San Francisco Trip */
}

.bg-travel-lightblue {
    background-color: #1E40AF !important; /* Travel Time */
}

.bg-ticket-orange {
    background-color: #d97706 !important; /* Ticket Purchase Day */
}

.bg-office-gray {
    background-color: #374151 !important; /* Work in Office */
}

.bg-wfh-green {
    background-color: #047857 !important; /* Work from Home */
}

.bg-floating-lavender {
    background-color: #7e22ce !important; /* Floating Holiday */
}

.bg-personal-pink {
    background-color: #be185d !important; /* Personal Time */
}

.bg-sick-teal {
    background-color: #0f766e !important; /* Sick Time */
}

.bg-vacation-cyan {
    background-color: #0891b2 !important; /* Vacation */
}

.bg-holiday-red {
    background-color: #b91c1c !important; /* Holiday */
}

/* Accordion animations */
.category-accordion > button i {
    transition: transform 0.2s ease;
}

/* Calendar event styling */
.fc-event {
    border: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.2s ease-in-out;
}

.fc-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

/* Half-day PTO styling */
.half-day-event {
    background: linear-gradient(to right, var(--half-day-color) 50%, transparent 50%) !important;
    opacity: 0.85 !important;
}

/* Tooltip for event details */
.event-tooltip {
    position: fixed;
    z-index: 1000;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 8px 12px;
    font-size: 14px;
    max-width: 300px;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.event-tooltip.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Travel line between locations */
.travel-connection {
    position: absolute;
    height: 2px;
    background: #1E40AF;
    z-index: 1;
    transform: translateY(-50%);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .fc-header-toolbar {
        flex-direction: column;
        gap: 8px;
    }
    
    .fc-toolbar-chunk {
        margin-bottom: 8px;
    }
    
    .fc-button-group {
        width: 100%;
        margin: 0 !important;
    }
    
    .fc-button {
        flex: 1;
    }
    
    /* Styles for smaller touch targets */
    .fc-daygrid-day-top {
        padding: 6px;
    }
    
    .fc-event {
        padding: 6px !important;
    }
}

/* Time zones display for travel time */
.time-zones {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 2px;
    color: #ffffff !important;
}

.time-zones span {
    display: block;
}

/* Bulk edit selection styles */
.bulk-selection .fc-day {
    transition: background-color 0.15s ease-in-out;
}

.bulk-selection .fc-day:hover {
    background-color: rgba(59, 130, 246, 0.1);
    cursor: pointer;
}

.bulk-selection .fc-day.selected {
    background-color: rgba(59, 130, 246, 0.2);
}

/* Sticky sidebar */
@media (min-width: 768px) {
    .sticky-sidebar {
        position: sticky;
        top: 1rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
}

/* PTO duration toggle button active state */
.pto-toggle-btn.active {
    background-color: #3b82f6;
    color: white;
}

/* Summary panel styles */
.summary-panel {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
}

.summary-panel:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Calendar filter indicator */
.filter-active .fc-toolbar-title::after {
    content: " (Filtered)";
    font-size: 0.85em;
    opacity: 0.7;
}

/* Icon transitions */
.transform {
    transition: transform 0.3s ease;
}

.category-accordion i {
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Segmented Control Styles */
.segmented-control {
    width: 100%;
}

.segmented-control-buttons {
    display: flex;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.segmented-control-button {
    flex: 1;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    cursor: pointer;
    background-color: #f8fafc;
    color: #64748b;
    transition: all 0.2s ease;
    user-select: none;
    border-right: 1px solid #e2e8f0;
}

.segmented-control-button-left {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.segmented-control-button-right {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-right: none;
}

/* Full Day selected */
input[id="duration-full"]:checked ~ .segmented-control-buttons .segmented-control-button-left {
    background-color: #3b82f6;
    color: white;
    font-weight: 500;
}

/* Half Day selected */
input[id="duration-half"]:checked ~ .segmented-control-buttons .segmented-control-button-right {
    background-color: #3b82f6;
    color: white;
    font-weight: 500;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Ensure modal is visible when showing */
#event-modal-overlay:not(.hidden) {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.modal-header {
    background-color: #000;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.modal-body {
    padding: 1.5rem;
}

/* Form styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4b5563;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.radio-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.category-specific {
    display: none;
    background-color: #f9fafb;
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e5e7eb;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

/* Button styles */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background-color: #000;
    color: white;
}

.btn-primary:hover {
    background-color: #1f2937;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

.btn-danger {
    background-color: #ef4444;
    color: white;
}

.btn-danger:hover {
    background-color: #dc2626;
}

/* Loading state for buttons */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification styles */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Calendar Events */
.event {
    padding: 4px 6px;
    margin-bottom: 4px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.2s ease;
}

.event:hover {
    opacity: 0.9;
}

/* Event category colors */
.category-travel-sf-trip {
    background-color: #3b82f6 !important; /* San Francisco Trip */
    color: #ffffff !important;
    border-left: 3px solid #3b82f6 !important;
}

.category-travel-time {
    background-color: #1E40AF !important; /* Travel Time */
    color: #ffffff !important;
    border-left: 3px solid #1E40AF !important;
}

.category-travel-ticket {
    background-color: #d97706 !important; /* Ticket Purchase Day */
    color: #ffffff !important;
    border-left: 3px solid #d97706 !important;
}

.category-travel-flight {
    background-color: #1E40AF !important; /* Travel Time */
    color: #ffffff !important;
    border-left: 3px solid #1E40AF !important;
}

.category-travel-hotel {
    background-color: #3b82f6 !important; /* San Francisco Trip */
    color: #ffffff !important;
    border-left: 3px solid #3b82f6 !important;
}

.category-work-office {
    background-color: #374151 !important; /* Work in Office */
    color: #ffffff !important;
    border-left: 3px solid #374151 !important;
}

.category-work-remote {
    background-color: #047857 !important; /* Work from Home */
    color: #ffffff !important;
    border-left: 3px solid #047857 !important;
}

.category-pto-floating {
    background-color: #7e22ce !important; /* Floating Holiday */
    color: #ffffff !important;
    border-left: 3px solid #7e22ce !important;
}

.category-pto-personal {
    background-color: #be185d !important; /* Personal Time */
    color: #ffffff !important;
    border-left: 3px solid #be185d !important;
}

.category-pto-sick {
    background-color: #0f766e !important; /* Sick Time */
    color: #ffffff !important;
    border-left: 3px solid #0f766e !important;
}

.category-pto-vacation {
    background-color: #0891b2 !important; /* Vacation */
    color: #ffffff !important;
    border-left: 3px solid #0891b2 !important;
}

.category-holiday {
    background-color: #b91c1c !important; /* Holiday */
    color: #ffffff !important;
    border-left: 3px solid #b91c1c !important;
}

/* Utility class */
.hidden {
    display: none !important;
}

/* Calendar Grid Styles */
#calendar {
    font-family: Arial, sans-serif;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.calendar-header-cell {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #eee;
}

.calendar-row:last-child {
    border-bottom: none;
}

.date {
    position: relative;
    height: 110px;
    padding: 8px;
    border-right: 1px solid #eee;
    overflow: auto;
}

.date:last-child {
    border-right: none;
}

.date .date-number {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.date.other-month {
    background-color: #f8f9fa;
}

.date.other-month .date-number {
    color: #aaa;
}

.date.today {
    background-color: #e8f4fd;
}

.date.today .date-number {
    color: #1976d2;
    font-weight: 700;
}

.date.weekend {
    background-color: #f9f9f9;
}

.date:hover {
    background-color: #f0f8ff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .date {
        height: 80px;
        font-size: 12px;
    }
}

/* Month Navigation */
.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-navigation .month-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

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

.calendar-navigation button:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Additional styles to ensure modal visibility */
#event-modal-overlay.flex {
    display: flex !important;
    z-index: 9999 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#event-modal-overlay.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Loading states and animations */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.calendar-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-loading-overlay .spinner {
    font-size: 2rem;
    color: #4F46E5;
}

/* Notification style enhancements */
#notification-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    overflow: hidden;
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification.info {
    border-left: 4px solid #17a2b8;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Critical modal visibility overrides */
#event-modal-overlay {
    z-index: 99999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#event-modal-overlay.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Also ensure modal content is visible */
#event-modal {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Event hover effects */
.fc-event {
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.fc-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Ensure modal appears above everything */
#event-details-modal {
    z-index: 1100;
}

/* Update CSS variables for new color scheme */
:root {
    --primary-bg: #F4E3D9;
    --accent-teal: #007C80;
    --deep-slate: #2E4A5B;
    --cool-teal: #4F6D7A;
    --grid-gray: #9AA2A3;
    --text-charcoal: #2D2D2D;
}

/* Public Calendar Styles */
body:not(.admin-view) {
    background-color: var(--primary-bg) !important;
    color: var(--text-charcoal);
}

/* Calendar Container Styles */
body:not(.admin-view) #calendar-container {
    background-color: transparent;
    border-radius: 1rem;
    box-shadow: none;
    /* padding: 1.5rem; */
    border: 2px solid #007C80;
}

/* Calendar Background */
body:not(.admin-view) .fc {
    background-color: transparent !important;
}

/* Calendar Grid */
body:not(.admin-view) .fc .fc-scrollgrid {
    border: 1px solid #006366 !important;
    background-color: transparent !important;
}

/* Date Cells */
body:not(.admin-view) .fc .fc-daygrid-day {
    background-color: #f2efed !important;
}



/* Today's Cell */
body:not(.admin-view) .fc .fc-day-today {
    background-color: #e5e7eb !important;
}

/* Other Month's Dates */
body:not(.admin-view) .fc .fc-day-other {
    background-color: #f2efed !important;
}




/* Calendar Navigation Buttons */
body:not(.admin-view) .fc .fc-button-primary {
    background-color: var(--accent-teal) !important;
    border-color: #006366 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

body:not(.admin-view) .fc .fc-button-primary:hover {
    background-color: #006366 !important;
    border-color: #006366 !important;
}

/* Today Button */
body:not(.admin-view) .fc .fc-today-button {
    background-color: var(--deep-slate) !important;
    border-color: var(--deep-slate) !important;
}

body:not(.admin-view) .fc .fc-today-button:hover {
    background-color: var(--cool-teal) !important;
    border-color: var(--cool-teal) !important;
}

/* Calendar Grid */
body:not(.admin-view) .fc th {
    border-color: #006366 !important;
    padding: 0.1rem 0;
    font-weight: 600;
    color: var(--deep-slate);
}

body:not(.admin-view) .fc td {
    border-color: #006366 !important;
}

body:not(.admin-view) .fc .fc-day-today {
    background-color: rgba(0, 124, 128, 0.05) !important;
}

/* Sidebar Styles */
body:not(.admin-view) .categories-sidebar {
    background-color: var(--deep-slate);
    border-radius: 1rem;
    overflow: hidden;
}

body:not(.admin-view) .categories-sidebar-2 {
    background-color: transparent;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #006366 !important;
}

body:not(.admin-view) .categories-header {
    background-color: var(--deep-slate);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

body:not(.admin-view) .category-accordion button {
    background-color: var(--cool-teal);
    color: white;
    transition: background-color 0.2s ease;
}

body:not(.admin-view) .category-accordion button:hover {
    background-color: var(--deep-slate);
}

/* Controls Section */
body:not(.admin-view) .controls-section {
    background-color: transparent;
    /* padding: 0 0 1.5rem 0; */
}

/* Filter Layout */
body:not(.admin-view) .filter-container {
    display: flex;
    margin-bottom:0px;
}

/* Filter Group */
body:not(.admin-view) .filter-group {
    border: 1px solid #007C80;
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    margin-top: 0.25rem;
}

/* Filter Select Container */
body:not(.admin-view) .filter-select-container {
    flex: 1;
}

body:not(.admin-view) .filter-select-container:first-child {
    border-right: 1px solid #007C80;
}

/* Filter Select Inputs */
body:not(.admin-view) .filter-select {
    width: 100%;
    padding: 0.5rem;
    border: none;
    background-color: transparent;
    color: #2E4A5B;
    font-size: 0.875rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E4A5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 0.875rem;
    padding-right: 2rem;
}

body:not(.admin-view) .filter-select:focus {
    outline: none;
}

/* Style the dropdown options */
body:not(.admin-view) .filter-select option {
    background-color: white;
    color: #2E4A5B;
}

/* Reset Button */
body:not(.admin-view) #reset-btn {
    width: 100%;
    padding: 0.5rem;
    background-color: #007C80;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 5px;
}

body:not(.admin-view) #reset-btn:hover {
    background-color: #006366;
}

/* Original PTO Summary Widget Styling */
body:not(.admin-view) .bg-white {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Filter Labels */
body:not(.admin-view) .filter-label {
    color: #2E4A5B;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
} 

body:not(.admin-view) .fc .fc-toolbar.fc-header-toolbar {
	padding: 10px 10px 10px 10px !important;
    margin-bottom: 0em !important;
}


.fc-col-header-cell {
    border-left: none !important;
    border-right: none !important;
    /* border-top: none !important; */
    /* border-top: 2px solid #007C80 !important; */
    border-top: 2px solid #007C80 !important;
}
.fc .fc-scrollgrid-section-sticky > * {
	background: transparent !important;
    border-top: 2px solid #007C80 !important;
}
.fc .fc-daygrid-body {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    overflow: hidden; /* prevents child elements from overflowing the rounded corners */
}
.fc .fc-view-harness {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}
.fc .fc-button-group {
	background-color: #006366 !important;
	border-radius: 7px !important;
}


