
/* CMS Übersicht */
.reservation-overview {
    padding: 20px;
    background: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: inherit;
}

/* Filter Sektion */
.filter-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.filter-form .filter-row {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.filter-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #495057;
    font-size: 14px;
}

.filter-group input,
.filter-group select {
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.btn-filter,
.btn-reset {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    margin-top: 5px;
}

.btn-filter {
    background: #007cba;
    color: white;
    margin-left: 10px;
}

.btn-filter:hover {
    background: #005a87;
}

.btn-reset {
    background: #6c757d;
    color: white;
    margin-left: 10px;
}

.btn-reset:hover {
    background: #545b62;
}

/* Tabellen */
.reservation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border-radius: 8px;
    overflow: hidden;
}

.reservation-table th {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.reservation-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    font-size: 14px;
}

.reservation-table tbody tr:hover {
    background-color: #f8f9fa;
}

.reservation-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
}

.status-badge.status-provisorisch {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-badge.status-freigegeben {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.status-abgelehnt {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Status Row Highlighting */
.reservation-table .status-provisorisch {
    border-left: 4px solid #ffc107;
}

.reservation-table .status-freigegeben {
    border-left: 4px solid #28a745;
}

.reservation-table .status-abgelehnt {
    border-left: 4px solid #dc3545;
}

/* Aktions-Buttons */
.actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-detail,
.btn-approve,
.btn-reject,
.btn-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-detail {
    background: #17a2b8;
    color: white;
}

.btn-detail:hover {
    background: #138496;
}

.btn-approve {
    background: #28a745;
    color: white;
}

.btn-approve:hover {
    background: #218838;
}

.btn-reject {
    background: #dc3545;
    color: white;
}

.btn-reject:hover {
    background: #c82333;
}

.btn-delete {
    background: #6c757d;
    color: white;
}

.btn-delete:hover {
    background: #545b62;
}

/* No Results */
.no-results {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px;
}

/* ==========================================================================
   DETAIL VIEW STYLES
   ========================================================================== */

/* Detail View */
.reservation-detail {
    padding: 20px;
    background: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

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

.btn-back,
.btn-save,
.btn-cancel {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-back {
    background: #6c757d;
    color: white;
}

.btn-back:hover {
    background: #545b62;
}

.btn-save {
    background: #ea534e;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    margin-right: 40px;
}

.btn-save:hover {
    background: #ea534e;
}

.btn-cancel {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
}

.btn-cancel:hover {
    background: #545b62;
}

.status-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-label {
    font-weight: bold;
    color: #495057;
}

.status-change {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-change label {
    font-weight: bold;
    color: #495057;
}

.status-change select {
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* Form Elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

fieldset {
    padding: 25px;
    margin-bottom: 25px;
}

fieldset legend {
    font-weight: bold;
    color: #2c3e50;
    padding: 0 15px;
    font-size: 18px;
}

/* Checkbox Groups */
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.checkbox-group label:hover {
    background-color: #f8f9fa;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

/* Metadaten */
.metadata-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 25px 0;
    border: 1px solid #e9ecef;
}

.metadata-item {
    margin-bottom: 8px;
    font-size: 14px;
    color: #6c757d;
}

.metadata-item:last-child {
    margin-bottom: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    margin-top: 25px;
}

.danger-actions {
    display: flex;
    gap: 10px;
}


.fc-event.status-provisorisch {
    background-color: #6198b550; !important;
    color: #fff !important;
    padding: 3px
    
}


.fc-event.status-freigegeben {
    background-color: #6198b5; !important;
    color: #fff !important;
    padding: 3px
}


.fc-event.status-abgelehnt {
    display: none !important;
}

.fc-event {
    cursor: pointer;
    font-size: 11px;
    transition: transform 0.2s ease;
}

.fc-event:hover {
    transform: scale(1.02);
}

.fc-event-title {
    color: #000;
}
.fc-event-time {
    color: #000;
}
.fc-event:hover {
    opacity: 0.8;
    transform: scale(1.02);
    transition: all 0.2s ease;
}
.fc-button.fc-button-primary {
    min-width: 30px;
    padding: 2px 8px;
    font-size: 0.88em;
}

.fc .fc-toolbar-chunk,
.fc .fc-button-group {
    gap: 2px;
}
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
    margin-bottom: 0px;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    min-height: 0px;
    position: relative;
}

.fc .fc-daygrid-day-events {
    margin-top: 0px;
}
.fc-event-title,
.fc-event-title-container,
.fc-daygrid-event,
.fc-daygrid-block-event {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;

}
.fc-h-event .fc-event-main
 {
    color: #000000;
    font-size: 15px;
}
.fc .fc-daygrid-day-frame {
    cursor: pointer;
}
.fc-day-disabled .fc-daygrid-day-frame {
    cursor: default !important;
}
/* Change default button color */
.fc-toolbar-chunk .fc-button,
.fc-toolbar-chunk .fc-button-primary,
.fc-toolbar-chunk .fc-prev-button,
.fc-toolbar-chunk .fc-next-button,
.fc-toolbar-chunk .fc-today-button {
    background-color: #ea534e  !important;
    color: #fff !important;
}


.fc-toolbar-chunk .fc-button:hover,
.fc-toolbar-chunk .fc-button-primary:hover {
    background-color: #c13d37 !important;
}
:root{

    --fc-neutral-bg-color: hsla(0, 0%, 82%, .3);
    --fc-neutral-text-color: grey;
    --fc-border-color: #ddd;
    --fc-button-text-color: #fff;
    --fc-button-border-color: #ffffff;
    --fc-button-hover-bg-color: #ffffff;
    --fc-button-hover-border-color: #ffffff;
    --fc-button-active-bg-color: #ffffff;
    --fc-button-active-border-color: #ffffff;
    --fc-event-border-color: #ffffff;
    --fc-bg-event-opacity: 0.3;
    --fc-today-bg-color: #e5e5e5;


}

input::placeholder,
textarea::placeholder {
    color: #888888;
    opacity: 1;
}
.alert {
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.5;
}
.alert i {
    flex-shrink: 0;
}
.availability-info {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.validation-messages {
    margin-top: 10px;
}

#fc-dom-1{
  font-size: 36px;
}
.CCSS224 .cms_content .text,
.CCSS225 .cms_content .text,
.CCSS424 .cms_content .text,
.CCSS441 .cms_content .text,
.CCSS451 .cms_content .text,
.col-12 p {
      width: 66%;
    margin: 0 0 .5em;
  }
.CCSS235{
  height:2px;
  border-width:0;
  color:#000;
  background-color:#000;
}
.cms_content .cms_document > a{
      background-image: none;
  }

.noshow{
  display:none !important
}
input#tel, input#name, input#vorname, input#email {
    width: 362px;
}
#ort {
    width: 270px;
}
.person{
  padding-bottom: 50px
}
.person p{
  margin: 5px 0 0 0
}

#suchbegriff{
  margin-left:0!important;
}
#arrow{
  top:52%!important;
}
.suchergebnisse{
  border-bottom:2px solid #000!important;
}
.legende{
  font-size: 16px;
  margin: 0.5em 0 0.5em 0
}
.cms_accordion {
    border-top: 2px solid #000;
}
#legend-reserviert {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #6198b5;
    margin-right: 6px;
    border-radius: 2px;
}

#legend-besetzt {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #6198b550;
    margin-left: 16px;
    margin-right: 6px;
    border-radius: 2px;
}
.calendar-legend{
  padding-left: 50px;
  font-size: 14px;
}


.fc .fc-col-header-cell-cushion,
.fc .fc-daygrid-day-top {
    font-size: 24px;
}

.CCSS225 li,
.CCSS320 li,
.CCSS321 li,
.CCSS460 li,
.CCSS461 li,
.CCSS465 li {
    list-style-type: disc ;
    list-style-position: outside ;
    margin-left: 1.5em;
    padding-left: 0.5em;
}
.CCSS225 ol > li,
.CCSS320 ol > li,
.CCSS321 ol > li,
.CCSS460 ol > li,
.CCSS461 ol > li,
.CCSS465 ol > li {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 1.5em;
    padding-left: 0.5em;
}
.cms_item a.file{
  padding: 0px!important;
}

.text h5 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.6em 0;
}
input#adressen,
input#schluesselnummer,
input#katzentor,
input#besteller,
input#emaill{
  max-width: 800px;
  width: 368px;
}
textarea#ersatzteile{
  width: 51%;
  font: 500 30px Barlow;
  min-width: 799px;
  max-width: 800px;
}
#feld1657{
  width: 49%;
}
input#vornamenachname{
  max-width: 800px;
}
.CCSS395 .selectDropdown{
    max-width: 801px;
    min-width: 800px;
    font: 500 30px Barlow;
}
.CCSS395 input[type="checkbox"]{
  position: absolute;
  width: 346px !important;
  height: 30px;
}
input#katzentor{
  min-width:800px;
}

input#nachnamen,
input#vornamen,
input#plze,
input#orte,
input#telefonprivat,
input#besteller,
input#adressen,
input#schluesselnummer,
input#namekinder,
input#emaill,
input#strasse,
.CCSS394 input[type="file"],
input#erreichbarkeit,
input#telefon{
  max-width: 801px;
  min-width: 800px;
}
textarea#schadensmeldung{
  font: 500 30px Barlow;
  max-width: 800px;
}
#z2142 input[type="submit"]{
  margin-bottom: 10px;
  max-width: 800px;
  margin-right: 100%;
  background: #ea534e;
  color: white;

}

