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

.container {
    position: relative;
    max-width: 2000px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


h1 {
    color: #e67e22;
    text-align: center;
}

/* Login Form */
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #e67e22;
}
.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
}

.login-container button:hover {
    background-color: #c0392b;
}

/* Flash Messages */
.flash-messages {
    margin-bottom: 15px;
}

.flash-success {
    background: #2ecc71;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.flash-danger {
    background: #e74c3c;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; /* Optional: Make sure the image doesn't exceed its container width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Adjust this value to control the space below the logo */
}


/* Logout Button */
.logout-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.logout-btn {
    background-color: #e67e22;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.logout-btn:hover {
    background-color: #c82333;
}

/* Table Controls */
/* .table-controls {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    gap: 10px;

} */

.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.table-tabs-container button {
    font-size: 18px;
    padding: 12px 25px;
    margin: 3px;
    border-radius: 4px;
    background-color: #f5a623;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.table-tabs-container button:hover {
    background-color: #e67e22;
}

/* Toolbar Buttons */
.toolbar-action-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.toolbar-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 16px;
    font-weight: bold;
    gap: 4px;
}

.toolbar-action button,
.toolbar-buttons button {
    background-color: #666;
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 3px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.toolbar-action button:hover,
.toolbar-buttons button:hover {
    background-color: #d35400;
}

/* Smaller gap on the left side of headers */
#data-table th,
#stacked-data-table th {
    background-color: #f5a623;
    color: white;
    white-space: nowrap;
    border-radius: 6px;
    padding: 8px 6px; /* Reduce left/right padding */
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left; /* Ensures text is aligned properly */
}


#data-table th,
#data-table td,
#stacked-data-table th,
#stacked-data-table td {
    border: 0px solid #ddd;
    padding: 6px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* #data-table th,
#stacked-data-table th {
    background-color: #f5a623;
    color: white;
    white-space: nowrap;
    border-radius: 10px 10px 10px 10px;
    padding: 14px 12px;
} */

#data-table tr:nth-child(even),
#stacked-data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

#data-table tr:hover,
#stacked-data-table tr:hover {
    background-color: #eaeaea;
    cursor: pointer;
}

/* Stacked Table Specific Styles */
.stacked-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px;
}

.stacked-header select {
    width: 100%;
    min-width: 150px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.stacked-header input {
    width: 90%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Footer */
footer {
    text-align: center;
    background-color: #ecf0f1;
    color: #333;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 16px;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    border-radius: 10px;

    margin-top: auto;
}

footer a {
    color: #f5a623;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #f5a623;
}

/* Tag Cloud */
#tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    margin: 15px 0;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    height: 90px;
    overflow-y: auto;
    border: 1px solid #fff;
    background: #fff;
    position: relative;
}

#tag-cloud:empty::after {
    content: "No tags available";
    color: #aaa;
    font-size: 12px;
    position: absolute;
}

.tag-button {
    padding: 2px 4px;
    font-size: 12px;
    border: 1px solid #f5a623;
    background-color: white;
    color: #555;
    cursor: pointer;
    border-radius: 15px;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 70px;
    height: 28px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.tag-button .tag-count {
    background: #f5a623;
    color: white;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 10px;
    display: inline-block;
    min-width: 18px;
    text-align: center;
}

.tag-button:hover {
    background-color: #f5a623;
    color: white;
    border-color: #e67e22;
}

.tag-button:hover .tag-count {
    background: white;
    color: #f5a623;
    border: 1px solid #f5a623;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 29%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(243, 156, 18, 0.3);
    border-top-color: #f5a623;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Version Label */
.version-label {
    position: absolute;
    top: 10px;
    left: 15px;
    background-color: white;
    color: #f5a623;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Table Styling */
#data-table,
#stacked-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    table-layout: fixed; /* Ensures fixed column width */
}

#data-table th,
#data-table td,
#stacked-data-table th,
#stacked-data-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    
}

#tickets-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#tickets-table th,
#tickets-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#tickets-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

#tickets-table tr:hover {
    background-color: #eaeaea;
    cursor: pointer;
}

[data-column="name"] {
    width: 180px;
    max-width: 180px;
}

[data-column="type"],
[data-column="variant"] {
    width: 200px;
    max-width: 200px;
}

.price-column, [data-column="price_real"], [data-column="price_pro"], [data-column="price_pur"] {
    width: 100px;
    max-width: 100px;
    white-space: nowrap;
    text-align: right;    
}

/* right-align prices inside the .stacked-container */
.stacked-container.price-column {
    text-align: right;
}
/* 
#data-table th,
#stacked-data-table th {
    background-color: #f39c12;
    color: white;
    white-space: nowrap;
    border-radius: 10px 10px 10px 10px;
    padding: 10px 12px;
} */


/* Light separator between stacked cells */
.stacked-container div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Light grey separator */
    padding: 6px 0; /* Add spacing for clarity */
}

/* Remove the border from the last stacked item */
.stacked-container div:last-child {
    border-bottom: none;
}

/* Apply same shadow effect to the header */
#stacked-data-table thead {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Same shadow as table */
    position: sticky;
    top: 0;
    background-color: white; /* Ensure it stays visible */
    z-index: 2; /* Keeps it above content */
}
/* Gesamtzeile */
.search-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}


/* Stats + Button nebeneinander */
.stats-export-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats box */
.no-wrap-stats {
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    white-space: nowrap;
    line-height: 1;
}

/* Export button */
#export-excel-btn {
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #e0e0e0;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1;
    box-shadow: none;
}

#export-excel-btn:hover {
    background-color: #f5a623;
    color: #000;
}

/* Search field */
#global-search {
    flex: 1;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    box-shadow: none;
    display: flex;
    align-items: center;    
}


#global-search:focus {
    outline: none;
    border-color: #f5a623;
    box-shadow: 0 2px 6px rgba(245, 166, 35, 0.5);
}

/* Add spacing between table header and table body */
#stacked-data-table thead {
    margin-bottom: 10px;
    display: table-header-group;
}

#stacked-data-table tbody {
    display: table-row-group;
    border-top: 10px solid transparent; /* Creates space below the header */
}
/* Align action and logout buttons at the same height */
.action-buttons, .logout-container {
    position: absolute;
    top: 20px; /* Align at the same height */
    display: flex;
    gap: 10px; /* Space between buttons */
    z-index: 1000;
}

/* Position Logout Button to the Right */
.logout-container {
    right: 20px;
}
#gear-button, #calendar-button, #customers-button, #contracts-button, #projects-button, #properties-button, #services-button, #products-button, #assets-button, #help-button, #admin-button, #logout-button, #addresses-button, #employees-button, #tickets-button {
    background-color: #fff; /* White background */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Assets Button (Orange "A" on White Background) */
#calendar-button, customers-button, #admin-button, #contracts-button, #projects-button, #properties-button, #services-button, #products-button, #assets-button, #help-button, #addresses-button, #employees-button, #tickets-button {
    background-color: #fff; /* White */
    border: 1px solid #f5a623; /* Orange border */
    color: #f5a623; /* Orange text */
    font-size: 20px;
    font-weight: bold;
}

#calendar-button:hover, gear-button:hover, #admin-button:hover, #customers-button:hover, #services-button:hover, #contracts-button:hover, #projects-button:hover, #properties-button:hover, #products-button:hover, #assets-button:hover, #help-button:hover, #logout-button:hover, #addresses-button:hover, #employees-button:hover, #tickets-button:hover {
    background-color: #f5a623; /* Orange */
    color: #fff; /* White text on hover */
}

/* .view-toggle-button sub {
    font-size: 15px;
    vertical-align: sub;
    line-height: 1;
    margin-left: 0px;
}
*/

/* Logout Icon */
.logout-icon {
    font-size: 18px;
    color: #444;
}

#logout-button:hover .logout-icon {
    color: white;
}

.view-toggle-button {
    background-color: #fff;
    border: 2px solid #f5a623;
    color: #f5a623;
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-button.active {
    background-color: #f5a623;
    color: white;
    border-color: #d35400;
}
/* Make sure action wrapper is left-aligned */
.toolbar-action-buttons {
    display: flex;
    justify-content: flex-start; /* 👈 push to left */
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Optional: limit width of the panel */
.sync-panel {
    max-width: 500px;
    width: 100%;
}

/* Sync rows */
.sync-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.sync-button {
    min-width: 140px;
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease;
}

.sync-button:hover {
    background-color: #e67e22;
}

.sync-row span {
    font-size: 14px;
    color: #444;
}

/* Sync Messages */
.sync-messages {
    position: relative; /* Position it relative to its parent container */
    margin: 10px auto; /* Center the message box horizontally */
    padding: 5px 15px; /* Reduce padding for a smaller box */
    border-radius: 5px;
    max-width: 400px; /* Limit the width of the message box */
    text-align: center; /* Center the text */
    font-size: 13px; /* Slightly smaller font size */
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it appears above other elements */
    height: 30px; /* Reduced height */
    line-height: 30px; /* Vertically center the text */
    visibility: hidden; /* Hide the message but keep its space */
    opacity: 0; /* Make it transparent */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sync-messages.active {
    visibility: visible; /* Make it visible */
    opacity: 1; /* Fade in */
}

/* Success Message */
.sync-messages.success {
    background-color: #dff0d8; /* Light green */
    color: #3c763d; /* Dark green text */
    border: 1px solid #3c763d;
}

/* Error Message */
.sync-messages.error {
    background-color: #f2dede; /* Light red */
    color: #a94442; /* Dark red text */
    border: 1px solid #a94442;
}

/* Info Message */
.sync-messages.info {
    background-color: #d9edf7; /* Light blue */
    color: #31708f; /* Dark blue text */
    border: 1px solid #31708f;
}

/* Stretched Container (Füllt den gesamten Bildschirm) */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hauptbereich mit Flexbox für Inhalte */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Container für die Sprachen */
.help-container {
    display: flex;
    flex-wrap: wrap;  /* Ermöglicht Umbruch, wenn der Platz knapp wird */
    gap: 40px;
    justify-content: center;  /* Zentriert die Spalten */
    max-width: 1200px;
    margin: 0 auto;  /* Damit der Container in der Mitte bleibt */
    padding: 40px 20px;
}

/* Jede Spalte bekommt 50% der Breite (max. 600px, min. 300px) */
.help-column {
    flex: 1 1 45%;  /* Verhindert, dass die Spalten zu klein werden */
    max-width: 600px;
    min-width: 300px; /* Verhindert, dass die Spalten zu klein werden */
}

.view-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

.view-count {
    font-size: 12px;
    font-weight: bold;
    color: #f5a623;
    margin-top: 4px;
}

/* Anpassung für kleine Bildschirme */
@media screen and (max-width: 1024px) {
    .help-container {
        flex-direction: column;  /* Spalten übereinander auf kleineren Geräten */
        align-items: center;  /* Zentriert die Spalten */
    }

    .help-column {
        max-width: 100%;  /* Auf kleineren Bildschirmen nehmen Spalten 100% der Breite ein */
        min-width: 100%;
    }
}

/* View Buttons */
.view-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.view-toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-toggle-button:hover {
    background-color: #e0e0e0;
}

.view-count {
    font-size: 0.8rem;
    margin-left: 5px;
}

.fc-timegrid-slot {
    height: 20px; /* Adjust this value to your preference */
}

/* Ticket events (default color) */
.ticket-event {
    background-color: #007bff; /* Blue */
    border-color: #007bff;
    color: white;
}

/* Asset events (custom color) */
.asset-event {
    background-color: #28a745; /* Green */
    border-color: #28a745;
    color: white;
}
/* Calendar events (custom color) */
.custom-event {
    background-color: #ffa726; /* Softer orange for less aggressive contrast */
    border-color: #ffa726; /* Softer orange border */
    color: #ffffff; /* Ensure white text for readability */
}

/* Align form elements in a single row */
.form-inline {
    display: flex;
    align-items: center;
    gap: 10px; /* Add spacing between elements */
}

.form-inline label {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.form-inline input {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-inline button {
    padding: 6px 12px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f5a623;
    color: white;
    transition: background-color 0.3s ease;
}

.form-inline button:hover {
    background-color: #e67e22;
}

/* Center the editEventModal */
#editEventModal {
    position: fixed; /* Position relative to the viewport */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for the modal's size */
    z-index: 1000; /* Ensure it appears above other elements */
    background-color: white; /* Modal background color */
    padding: 20px; /* Add padding inside the modal */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add a shadow for better visibility */
    width: 700px; /* Increased width for better input fit */
    max-width: 90%; /* Ensure it doesn't exceed the screen width */
}

/* Ensure consistent height for all input fields in the modal */
#editEventModal input[type="text"],
#editEventModal input[type="url"],
#editEventModal input[type="datetime-local"],
#editEventModal input[type="date"],
#editEventModal input[type="number"] {
  height: 40px; /* Set a consistent height */
  padding: 5px 10px; /* Add padding for better usability */
  border: 1px solid #ccc; /* Add a border for consistency */
  border-radius: 4px; /* Rounded corners */
  font-size: 14px; /* Ensure consistent font size */
  box-sizing: border-box; /* Include padding and border in the element's total width/height */
}

/* Add space between the toolbar and the calendar */
.fc-toolbar {
    margin-bottom: 20px; /* Adjust this value to control the spacing */
}

/* Add space before the calendar toolbar */
.fc-header-toolbar {
    margin-top: 20px; /* Adjust this value to control the spacing */
}

/* Style for the modal form */
.form-stacked {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Add spacing between rows */
}

.form-row {
    display: flex;
    flex-direction: column; /* Stack title and input vertically */
    gap: 5px; /* Add spacing between title and input */
}

.form-row label {
    font-size: 14px;
    font-weight: bold;
}

.form-row input[type="url"] {
    flex: 3; /* Allow the input field to take up most of the space */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px; /* Set consistent height for inputs */
}

#event_url_link {
    color: #007bff; /* Blue color for the anchor icon */
    cursor: pointer;
    font-size: 1.5em; /* Slightly larger icon */
    text-decoration: none;
}

#event_url_link:hover {
    color: #0056b3; /* Darker blue on hover */
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Add spacing between fields */
    align-items: center;
    justify-content: space-between; /* Ensure fields and buttons are spaced evenly */
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 1; /* Allow fields to grow evenly */
    min-width: 200px; /* Ensure fields have a minimum width */
}

.form-field label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-field input {
    padding: 10px; /* Increase padding for better usability */
    font-size: 16px; /* Increase font size for readability */
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px; /* Set consistent height for inputs */
    box-sizing: border-box; /* Ensure padding doesn't affect width/height */
}

.form-field {
    margin-bottom: 15px;
}

#event_url {
    flex: 3; /* Make the input field take more space */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#event_url_link {
    color: #007bff; /* Blue color for the anchor icon */
    cursor: pointer;
    font-size: 1.5em; /* Slightly larger icon */
    text-decoration: none;
}

#event_url_link:hover {
    color: #0056b3; /* Darker blue on hover */
}

#title {
    width: 100%; /* Ensure the title input spans the full width */
    font-weight: bold; /* Make the title input text bold */
}

#start_at,
#end_at {
    width: 100%; /* Ensure date inputs span the full width */
}

.form-buttons {
    display: flex;
    gap: 10px; /* Add spacing between buttons */
}

.form-buttons button {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f5a623; /* Orange background */
    color: white; /* White text */
    transition: background-color 0.3s ease;
}

.form-buttons button:hover {
    background-color: #e67e22; /* Darker orange on hover */
}

/* Delete Button */
.delete-button {
    background-color: #dc3545; /* Red background */
    color: white; /* White text */
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.delete-button:hover {
    background-color: #c82333; /* Darker red on hover */
}
/* Increase text size and spacing inside calendar events */
.fc-event {
    font-size: 16px; /* Increase font size */
    line-height: 1.5; /* Adjust line height for better readability */
    overflow-wrap: break-word; /* Allow wrapping for long words */
    word-wrap: break-word; /* Ensure compatibility with older browsers */
    white-space: normal; /* Allow text to wrap */
}

/* Filter Container */
#filterContainer {
    position: relative;
    z-index: 10; /* Ensure the filter container is above other elements */
    margin-bottom: 10px;
    margin-top: 20px; /* Add space above the filter container */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#filterContainer label {
    margin-right: 15px;
    font-size: 14px;
}

#eventTypeFilters {
    display: inline-block;
}