* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f0f2f5;
  color: #1a1a1a;
  line-height: 1.5;
}
.app-container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background-color: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.header h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.user-info {
  font-size: 13px;
  opacity: 0.9;
}
.content {
  padding: 15px;
}
.section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}
.ue-section {
  position: sticky;
  top: 80px;
  z-index: 90;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.ue-date-display {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: #f8f9fa;
  padding: 2px 2px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.date-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
}
.date-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  color: #2c3e50;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.date-btn:hover {
  background: #e9ecef;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.date-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.date-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.current-date {
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
}
.ue-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.ue-btn {
  aspect-ratio: 1;
  border: 2px solid #e0e0e0;
  background: white;
  color: #666;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ue-btn:hover {
  background: #f0f7ff;
  border-color: #3498db;
  color: #3498db;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
          box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
}
.ue-btn.selected {
  background: #3498db;
  color: white;
  border-color: #3498db;
  -webkit-box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
          box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}
.floor-container {
  margin-bottom: 20px;
}
.floor-header {
  background: #f0f7ff;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
  border: 1px solid #d4e6f7;
  border-bottom: none;
}
.rooms-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0;
  background: white;
  border: 1px solid #d4e6f7;
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.room-card {
  padding: 16px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e9ecef;
}
.room-card:last-child {
  border-bottom: none;
}
.room-card:hover {
  background: #f8f9fa;
}
.room-card:active {
  background: #e9ecef;
}
.room-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.room-name {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.room-capacity {
  font-size: 12px;
  color: #666;
}
.room-status-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.status-block {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}
.status-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.status-block::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.status-block.se-free::before {
  background: #27ae60;
}
.status-block.se-self::before {
  background: #3498db;
}
.status-block.se-other::before {
  background: #95a5a6;
}
.status-block.sz-free::after {
  background: #27ae60;
}
.split-true .status-block::after {
  border-left: 1px solid white;
}
.status-block.sz-self::after {
  background: #3498db;
}
.status-block.sz-other::after {
  background: #95a5a6;
}
.room-card.hidden {
  display: none;
}
.floor-container.empty {
  display: none;
}
.no-selection-message {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 14px;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  -webkit-animation: fadeIn 0.2s;
          animation: fadeIn 0.2s;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-animation: slideUp 0.3s;
          animation: slideUp 0.3s;
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}
.close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #f0f2f5;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #666;
}
.close-btn:hover {
  background: #e9ecef;
}
.booking-info {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.booking-info h3 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 4px;
}
.booking-info p {
  color: #666;
  font-size: 14px;
}
.slot-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slot-option {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
  min-width: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.slot-option:hover:not(.disabled) {
  border-color: #3498db;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.slot-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slot-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 8px;
  background: #f0f2f5;
  position: relative;
  overflow: hidden;
}
.slot-icon.se::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: currentColor;
}
.slot-icon.sz::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: currentColor;
}
.slot-icon.sg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
}
.slot-option.free .slot-icon {
  color: #27ae60;
  background: #d5f4e6;
}
.slot-option.booked-self .slot-icon {
  color: #3498db;
  background: #dbeafe;
}
.slot-option.booked-other .slot-icon {
  color: #95a5a6;
  background: #ecf0f1;
}
.slot-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.slot-status {
  font-size: 12px;
  color: #666;
}
.conflict-warning {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}
.conflict-warning h4 {
  color: #c53030;
  font-size: 14px;
  margin-bottom: 8px;
}
.conflict-list {
  font-size: 13px;
  color: #666;
  list-style: none;
}
.conflict-list li {
  padding: 4px 0;
}
.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-primary {
  background: #3498db;
  color: white;
}
.btn-primary:hover {
  background: #2980b9;
}
.btn-danger {
  background: #e74c3c;
  color: white;
}
.btn-danger:hover {
  background: #c0392b;
}
.btn-secondary {
  background: #ecf0f1;
  color: #2c3e50;
}
.btn-secondary:hover {
  background: #d5dbdb;
}
.legend {
  padding: 16px;
  background: #f8f9fa;
  margin: 15px;
  border-radius: 12px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-size: 12px;
}
.legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.room-bookings {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
  line-height: 1.3;
}
.status-block.multi {
  position: relative;
  background: #f8f9fa;
  border: 2px solid #ddd;
  overflow: hidden;
}
.status-block.multi::after {
  content: '';
  position: absolute;
  left: -50%;
  top: 0;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(45deg, #27ae60 0 8px, #95a5a6 8px 16px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.status-block.multi.multi-own::after {
  background: repeating-linear-gradient(45deg, #3498db 0 8px, #95a5a6 8px 16px);
}
.status-block.multi.multi-free::after {
  background: repeating-linear-gradient(45deg, #27ae60 0 8px, #95a5a6 8px 16px);
}
.status-block.multi.multi-other::after {
  background: repeating-linear-gradient(45deg, #27ae60 0 8px, #e0e0e0 8px 16px);
}
.my-booking-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.ue-label {
  min-width: 60px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  margin-right: 20px;
}
.booked-rooms {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.booked-room-card {
  background: #f8f9fa;
  border: 1px solid #d4e6f7;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  min-width: 120px;
}
.booked-room-card:hover {
  background: #e3f2fd;
  border-color: #3498db;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.booked-room-card .room-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.booked-room-card .room-name {
  font-size: 13px;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 2px;
}
.booked-room-card .room-type {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}
.booked-room-card .room-status-indicator .status-block {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.no-bookings {
  color: #999;
  font-style: italic;
  font-size: 13px;
  padding: 8px 12px;
}
@media (max-width: 380px) {
  .ue-grid {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) {
  .app-container {
    max-width: 1080px;
    margin: 0 auto;
    background-color: white;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  .header {
    padding: 30px;
  }
  .header h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .user-info {
    font-size: 16px;
  }
  .content {
    padding: 30px;
  }
  .section {
    padding: 25px;
    margin-bottom: 25px;
  }
  .ue-section {
    position: sticky;
    top: 120px;
    z-index: 90;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ue-date-display {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
  }
  .ue-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px;
    max-width: 100%;
  }
  .ue-btn {
    aspect-ratio: 1;
    font-size: 16px;
    border-radius: 8px;
    min-height: 50px;
  }
  .floor-container {
    margin-bottom: 30px;
    border: 3px solid #34495e;
    border-radius: 12px;
    background: #f8f9fa;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .floor-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .rooms-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    padding: 10px;
    background: #ffffff;
    border: none;
    border-radius: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .room-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: white;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    padding: 20px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .room-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #7f8c8d;
    border-top: 2px solid #7f8c8d;
  }
  .room-card::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #7f8c8d;
    border-bottom: 2px solid #7f8c8d;
  }
  .room-card:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
  }
  .room-card:active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .room-info {
    text-align: center;
    margin-bottom: 10px;
  }
  .room-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
  }
  .room-capacity {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
  }
  .room-status-indicator {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
  .status-block {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #bdc3c7;
  }
  .legend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
  }
  .legend-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
  }
  .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #bdc3c7;
  }
  .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    margin: 0;
    padding: 30px;
    border-radius: 20px;
    -webkit-animation: modalFadeIn 0.3s ease-out;
            animation: modalFadeIn 0.3s ease-out;
  }
  @-webkit-keyframes modalFadeIn {
    from {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(0.9);
              transform: translate(-50%, -50%) scale(0.9);
    }
    to {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%) scale(1);
              transform: translate(-50%, -50%) scale(1);
    }
  }
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(0.9);
              transform: translate(-50%, -50%) scale(0.9);
    }
    to {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%) scale(1);
              transform: translate(-50%, -50%) scale(1);
    }
  }
  .modal-title {
    font-size: 24px;
  }
  .date-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .date-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 12px;
  }
  .current-date {
    font-size: 20px;
    font-weight: 600;
    min-width: 250px;
    text-align: center;
  }
  .my-booking-row {
    padding: 16px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .ue-label {
    min-width: 80px;
    font-size: 16px;
    margin-right: 30px;
  }
  .booked-room-card {
    padding: 12px 16px;
    border-radius: 8px;
    min-width: 140px;
  }
  .booked-room-card .room-name {
    font-size: 14px;
  }
  .booked-room-card .room-type {
    font-size: 11px;
  }
  .booked-room-card .room-status-indicator .status-block {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }
}
@-webkit-keyframes pulseGreen {
  0% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  50% {
    background-color: rgba(39, 174, 96, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
            box-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
@keyframes pulseGreen {
  0% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  50% {
    background-color: rgba(39, 174, 96, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
            box-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
@-webkit-keyframes pulseRed {
  0% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  50% {
    background-color: rgba(231, 76, 60, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
            box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
@keyframes pulseRed {
  0% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  50% {
    background-color: rgba(231, 76, 60, 0.2);
    -webkit-box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
            box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    background-color: inherit;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
@-webkit-keyframes pulseGreenDesktop {
  0% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    background-color: rgba(39, 174, 96, 0.15);
    -webkit-box-shadow: 0 0 25px rgba(39, 174, 96, 0.6);
            box-shadow: 0 0 25px rgba(39, 174, 96, 0.6);
    -webkit-transform: translateY(-4px) scale(1.03);
            transform: translateY(-4px) scale(1.03);
  }
  100% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes pulseGreenDesktop {
  0% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    background-color: rgba(39, 174, 96, 0.15);
    -webkit-box-shadow: 0 0 25px rgba(39, 174, 96, 0.6);
            box-shadow: 0 0 25px rgba(39, 174, 96, 0.6);
    -webkit-transform: translateY(-4px) scale(1.03);
            transform: translateY(-4px) scale(1.03);
  }
  100% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes pulseRedDesktop {
  0% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    background-color: rgba(231, 76, 60, 0.15);
    -webkit-box-shadow: 0 0 25px rgba(231, 76, 60, 0.6);
            box-shadow: 0 0 25px rgba(231, 76, 60, 0.6);
    -webkit-transform: translateY(-4px) scale(1.03);
            transform: translateY(-4px) scale(1.03);
  }
  100% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes pulseRedDesktop {
  0% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    background-color: rgba(231, 76, 60, 0.15);
    -webkit-box-shadow: 0 0 25px rgba(231, 76, 60, 0.6);
            box-shadow: 0 0 25px rgba(231, 76, 60, 0.6);
    -webkit-transform: translateY(-4px) scale(1.03);
            transform: translateY(-4px) scale(1.03);
  }
  100% {
    background-color: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.room-card.pulse-green {
  -webkit-animation: pulseGreenDesktop 1.5s ease-in-out;
          animation: pulseGreenDesktop 1.5s ease-in-out;
}
.room-card.pulse-red {
  -webkit-animation: pulseRedDesktop 1.5s ease-in-out;
          animation: pulseRedDesktop 1.5s ease-in-out;
}
