html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Full page layout styles */
.full-page-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.full-page-main {
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Date display styles */
.date-display {
  padding: 15px;
  text-align: left;
  color: white;
  font-family: Arial, sans-serif;
}

#current-date {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}

.time-part {
  font-size: 4rem;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.date-part {
  font-size: 2.5rem;
  display: block;
}

.main-container {
  background-color: #8BC396;
  min-height: 100vh;
  padding: 0;
}

/* Circle button and plus icon styling */
.circle-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3e7146;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.circle-button:hover {
  transform: scale(1.05);
}

.plus-icon {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right Panel and Reservation Styles */
.right-panel {
  padding: 15px;
  max-width: 700px;
}

/* Day section styles */
.day-section {
  margin-bottom: 20px;
}

.day-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.day-section-header h3 {
  color: #333;
  font-weight: bold;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #333;
  transition: color 0.2s;
}

.icon-button:hover {
  color: #555;
}

.reservation-item {
  margin-bottom: 10px;
}

.reservation-button {
  display: block;
  width: 100%;
  text-align: left;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.reservation-button:hover {
  background-color: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.2);
}

.reservation-date {
  font-size: 0.9rem;
  color: #666;
}

.reservation-time {
  font-size: 1rem;
  font-weight: 500;
  margin: 5px 0;
}

.reservation-info {
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Content container layout */
.content-container {
  display: flex;
  height: calc(100vh - 120px); /* Adjust height based on header size */
}

.main-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prosto-heading {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
}

/* Status indicators */
.reservation-status {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 5px;
}

.status-yes {
  color: #28a745;
  font-weight: bold;
}

.status-no {
  color: #dc3545;
  font-weight: bold;
}