body {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

html, body {
    height: 100%;
    width: 100%;
}

.split-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.split-pane {
  width: 100%;
  overflow: hidden;
}

.left-pane {
  height: 60%;
  border-bottom: 2px solid #333;
}

.right-pane {
  height: 40%;
  background-color: #f5f5f5;
}

.image-skeleton {
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 768px) {
  .image-skeleton {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .split-container {
    flex-direction: row;
  }
  .left-pane {
    height: 100%;
    width: 70%;
    border-right: 2px solid #333;
    border-bottom: none;
  }
  .right-pane {
    height: 100%;
    width: 30%;
  }
}

#filter-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    max-width: 60px;
    max-height: 100px;
    overflow: hidden;
    transition: max-width 0.3s ease, padding 0.3s ease;
    cursor: pointer;
}

#filter-panel:hover {
    max-width: 280px;
    max-height: 100%;
    overflow-y: auto;
}

#filter-panel .filter-section,
#filter-panel .reset-btn {
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

#filter-panel:hover .filter-section,
#filter-panel:hover .reset-btn {
    opacity: 1;
    pointer-events: auto;
}

#filter-panel h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#filter-panel:hover h3 {
    overflow: visible;
}

.filter-section {
    margin-bottom: 15px;
    white-space: normal;
}

.filter-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    font-weight: normal;
    margin-bottom: 0;
}

.filter-checkbox:hover {
    background: #e0e0e0;
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 6px;
    cursor: pointer;
}

.filter-checkbox span {
    font-size: 13px;
    color: #333;
}

.filter-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.reset-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    #filter-panel {
        max-width: 50px;
        max-height: 60px;
        padding: 10px;
    }
    
    #filter-panel:hover {
        max-width: calc(100% - 40px);
        max-height: 70%;
        padding: 15px;
    }
    
    #filter-panel h3 {
        font-size: 16px;
        margin: 0 0 10px 0;
    }
}

#map {
    height: 100%;
    width: 100%;
}

#content-panel {
    height: 100%;
    width: 100%;
    position: relative;
}

#content-display {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

#restaurant-details {
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

#restaurant-details .hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
  #restaurant-details .hero-image {
    height: 200px;
  }
}

#restaurant-details .content-wrapper {
    background: white;
    padding: 30px;
}

#restaurant-details h1 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

#restaurant-details .location-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

#restaurant-details .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

#restaurant-details .info-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#restaurant-details .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

#restaurant-details .info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #667eea;
    margin-bottom: 8px;
}

#restaurant-details .info-value {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

#restaurant-details .cuisine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#restaurant-details .cuisine-tag {
    background: white;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 2px solid #667eea;
    font-weight: 500;
}

#restaurant-details .external-link {
    display: inline-block;
    margin-top: 15px;
    margin-right: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
}

#restaurant-details .external-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

#restaurant-details .interested-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

#restaurant-details .interested-btn:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

#restaurant-details .interested-btn.active {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

#restaurant-details .interested-btn.active:hover {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.welcome-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.welcome-message h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.welcome-message p {
    font-size: 18px;
    opacity: 0.9;
}

body.working {
	cursor: progress;
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 22px;
}



.hidden {
	display: none !important;
}

#forkme img {
  z-index: 99999;
}

#map {
	z-index: 0;
}

.container {
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 9999;
}

.map-active .container {
	/* so that clicks go through to the map! */
	pointer-events: none;
}

.content {
	display: table-cell;
	vertical-align: middle;
  padding: 10px 0;
}

.content-box {
	margin: 0 auto;
	width: 80%;
	min-width: 300px;
	max-width: 600px;
	background-color: rgba(0,255,255,0.9);
	padding: 10px;
	border-radius: 8px;
  max-height: 85vh;
  overflow-y: scroll;
}

h2 {
	text-align: center
}

.note {
  padding: 10px;
  text-align: center;
  background-color: #ffeb3b;
  border-radius: 8px;
}

.credit {
  padding-top: 4px;
  margin-top: 12px;
  border-top: 1px solid #ccc;
	font-size: 0.8em;
	text-align: center;
}

.whats-new {
  font-size: 0.9em;
  text-align: center;
}

#working {
	text-align: center;
}

#controls {
  z-index: 99999;
  position: absolute;
  overflow: hidden;
  bottom: -200px;
  height: 133px;
  left: 0px;
  margin: 0px 10px;
  padding: 3px 16px 5px;
  background-color: rgba(255,255,255,0.7);
  transition: bottom 0.5s;
}

.map-active #controls {
  bottom: -106px;
}

#controls:hover {
  bottom: 0px;
  left: 0px;
  height: auto;
  background-color: rgba(255,255,255,0.9);
}

#controls:hover .title span {
  opacity: 0;
}

#controls .title {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 13px;
  padding-bottom: 3px;
}

#controls .title span {
  display: block;
  line-height: 0.9;
  font-weight: lighter;
  font-size: 11px;
  transition: all 0.5s ease-in-out;
}

#controls .control-block {
    clear: both;
}

#controls .control-block input {
  float: right;
  margin-left: 10px;
}

#controls .actions {
  text-align: center;
}

#controls .support {
  border-top: 1px dashed black;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 0.8em;
  text-align: center;
}

#controls .support div {
  padding-bottom: 5px;
}


.loading {
  margin: 20px auto 0;
  width: 70px;
  text-align: center;
}

.loading > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.loading .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loading .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/* email signup */
.email-form {
  margin: 16px 0;
  text-align: center;
}

input#email {
  font-size: 16px;
  font-family: PTSans, Helvetica, Arial, sans-serif;
  border-radius: 2px;
  background-color: white;
  padding: 6px 6px;
  min-width: 200px;
  border: 1px solid #ccc;
  outline: 0;
}

button#launch {
  font-family: PTSans, Helvetica, Arial, sans-serif;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: top;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #1080f2;
  border-radius: 2px;
  color: white;
  font-family: PTSans;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
  outline: 0;
}

button#launch:active, button#launch:focus, button#launch:hover {
  background-color: #273140;
  color: #fff;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

div.disclaimer {
  color: #B7B7B7;
  font-size: 0.9em;
  margin-top: 8px;
  font-style: italic;
}

#map {
  background: #202B2E;
  outline: 0;
}

/* Menu Styles */
.menu-container {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.menu-loading {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
}

.menu-error {
  text-align: center;
  padding: 20px;
  color: #999;
  font-style: italic;
}

.menu-content {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.meal-period-selector {
  margin-bottom: 25px;
  text-align: center;
}

.meal-period-selector label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 16px;
}

.meal-period-dropdown {
  width: 100%;
  max-width: 300px;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #2c3e50;
}

.meal-period-dropdown:hover {
  border-color: #667eea;
}

.meal-period-dropdown:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.meal-period-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.meal-period-header h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 700;
}

.meal-experience,
.meal-service {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  margin-top: 5px;
  font-weight: 500;
}

.menu-group {
  margin-bottom: 35px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.menu-group-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.menu-items {
  display: grid;
  gap: 16px;
}

.menu-item {
  padding: 16px;
  background: #fafafa;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-item:hover {
  background: #f5f5f5;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.menu-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}

.menu-item-price {
  font-size: 16px;
  font-weight: 700;
  color: #667eea;
  white-space: nowrap;
}

.menu-item-description {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 768px) {
  .menu-title {
    font-size: 24px;
  }
  
  .meal-period-header h3 {
    font-size: 20px;
  }
  
  .menu-group-title {
    font-size: 18px;
  }
  
  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .menu-item-price {
    font-size: 15px;
  }
}