/* [project]/src/app/globals.css [app-client] (css) */
body, html {
  background-color: #f2f2f2;
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

.page-user-actions {
  flex-shrink: 0;
  margin-left: auto;
}

main > .page-user-actions {
  z-index: 2000;
  position: absolute;
  top: 15px;
  right: 20px;
}

.button-like {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background-color: #4285f4;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.button-like:hover {
  opacity: .9;
}

.button-secondary {
  color: #3c4043;
  cursor: pointer;
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-secondary:hover {
  background-color: #f1f3f4;
}

.button-danger {
  color: #721c24;
  cursor: pointer;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-danger:hover {
  background-color: #f1b0b7;
}

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

.logout-link {
  color: #1a0dab;
  font-size: 14px;
  text-decoration: none;
}

.logout-link:hover {
  text-decoration: underline;
}

.main-container {
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: flex;
}

.logo h1 {
  color: #4285f4;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: normal;
}

.search-bar-container {
  width: 100%;
  max-width: 580px;
  margin-bottom: 20px;
  position: relative;
}

#search-bar {
  box-sizing: border-box;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, .28);
}

#search-bar:focus {
  outline: none;
}

.button-container button {
  cursor: pointer;
  background-color: #f8f9fa;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  margin: 11px 4px;
  padding: 10px 16px;
}

.button-container button:hover {
  border-color: #dadce0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

.autocomplete-results {
  z-index: 1000;
  text-align: left;
  width: 100%;
  position: absolute;
}

.autocomplete-results ul {
  background-color: #fff;
  border: 1px solid #dfe1e5;
  border-top: none;
  border-radius: 0 0 24px 24px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-shadow: 0 4px 6px rgba(32, 33, 36, .28);
}

.autocomplete-results li {
  cursor: pointer;
  padding: 10px 20px;
}

.autocomplete-results li:hover {
  background-color: #eee;
}

.results-view-container {
  background-color: #f2f2f2;
  width: 100%;
  min-height: 100vh;
}

.results-header {
  background-color: #fff;
  border-bottom: 1px solid #dfe1e5;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  display: flex;
}

.results-header .top-header-logo h2 {
  color: #4285f4;
  white-space: nowrap;
  margin: 0;
  font-size: 24px;
}

.results-header .search-bar-container {
  max-width: 600px;
  margin-bottom: 0;
}

.results-header #search-bar {
  box-shadow: none;
}

.results-content {
  padding: 20px;
}

.location-card {
  background-color: #fff;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

.address-link {
  color: #5f6368;
  text-decoration: none;
}

.address-link:hover {
  text-decoration: underline;
}

.location-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

.opening-hours h4 {
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
}

.opening-hours ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.opening-hours li {
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  display: flex;
}

.opening-hours li.special-day-hours {
  justify-content: flex-start;
}

.opening-hours li strong {
  flex-shrink: 0;
  flex-basis: 120px;
  font-weight: normal;
}

.opening-hours .hours-value {
  text-align: right;
}

.opening-hours + .opening-hours {
  margin-top: 20px;
}

.approved-stamp {
  color: #1e8e3e;
  background-color: #e6f4ea;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
}

.pending-stamp {
  color: #856404;
  background-color: #fff3cd;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
}

.details-view {
  gap: 20px;
  display: flex;
}

.calendar-container {
  flex-shrink: 0;
  flex-basis: 350px;
}

.hours-display-container {
  flex-grow: 1;
}

.pending-updates {
  margin-top: 20px;
}

.pending-update-card {
  border: none;
  border-top: 1px dashed #e0e0e0;
  border-radius: 0;
  margin-top: 15px;
  padding: 15px 0;
}

.pending-update-card:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.vote-action {
  margin-top: 15px;
}

.vote-prompt {
  color: #5f6368;
  margin-bottom: 8px;
  font-size: 14px;
}

.vote-buttons {
  gap: 10px;
  display: flex;
}

.update-meta {
  color: #5f6368;
  text-align: right;
  border-top: 1px dashed #eee;
  margin-top: 10px;
  padding-top: 5px;
  font-size: 12px;
  font-style: italic;
}

.hidden {
  display: none !important;
}

.modal-backdrop {
  z-index: 3000;
  background-color: rgba(0, 0, 0, .6);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-content {
  text-align: left;
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 450px;
  padding: 20px 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
}

.modal-close-btn {
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 28px;
  position: absolute;
  top: 10px;
  right: 15px;
}

.modal-content h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.modal-footer-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.form-group, .aligned-form .form-group {
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}

.form-group label, .aligned-form .form-group label {
  text-align: right;
  cursor: pointer;
  flex-shrink: 0;
  flex-basis: 150px;
  margin-bottom: 0;
  padding-top: 8px;
  font-weight: bold;
}

.update-form-container input, .update-form-container select, .modal-content .aligned-form input, .modal-content .aligned-form select {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}

.form-group > input, .form-group > select, .form-group > button, .hours-rows-wrapper {
  flex-grow: 1;
  width: auto;
}

.error-message {
  color: #d93025;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.success-message {
  color: #1e8e3e;
  text-align: center;
  background-color: #e6f4ea;
  border-radius: 4px;
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
}

.update-action {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

.location-card > .update-action {
  justify-content: center;
  gap: 10px;
  display: flex;
}

.hours-display-container .update-action {
  text-align: left;
  border-top: none;
  margin-top: 10px;
  padding-top: 10px;
}

.suggest-text {
  color: #5f6368;
  margin: 0;
  font-size: 14px;
}

.suggest-text a {
  color: #1a0dab;
  text-decoration: none;
}

.suggest-text a:hover {
  text-decoration: underline;
}

.update-form-container {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

.update-form-container h3 {
  text-align: center;
  margin-top: 0;
}

.form-group-inline {
  flex-grow: 1;
  gap: 20px;
  display: flex;
}

.form-actions {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.hours-row {
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.hours-row select {
  flex: 2;
}

.hours-row input[type="time"] {
  flex: 3;
}

.checkbox-label {
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  display: flex;
}

.remove-row-btn, .add-row-btn {
  cursor: pointer;
  background-color: #f1f3f4;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-weight: bold;
}

.remove-row-btn {
  color: #d93025;
  padding: 5px 10px;
}

.add-row-btn {
  margin-top: 5px;
  padding: 8px 12px;
}

.update-type-block {
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 15px;
  padding: 15px;
}

.special-day-group {
  border-top: 1px solid #e0e0e0;
  margin-top: 15px;
  padding-top: 15px;
}

.special-day-group:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.react-calendar {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 100%;
  font-family: Arial, sans-serif;
}

.react-calendar__tile--active {
  color: #fff !important;
  background-color: #4285f4 !important;
}

.react-calendar__tile {
  position: relative;
}

.calendar-dot {
  box-sizing: border-box;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  right: 6px;
}

.pending_unvoted-dot {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #d6b96e;
}

.pending_voted-dot {
  background-color: #d6b96e;
  border: none;
}

.approved-dot {
  background-color: #1e8e3e;
}

@media (max-width: 768px) {
  .details-view {
    flex-direction: column;
  }

  .calendar-container {
    flex-basis: auto;
  }

  .results-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .results-header .search-bar-container {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .logo h1 {
    font-size: 40px;
  }

  #search-bar {
    padding: 10px 16px;
  }

  .results-header .top-header-logo h2 {
    font-size: 20px;
  }

  .results-header {
    gap: 10px;
    padding: 8px 12px;
  }

  .aligned-form .form-group, .update-form-container .form-group {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }

  .aligned-form .form-group label, .update-form-container .form-group label {
    text-align: left;
    padding-top: 0;
  }
}

.submission-list {
  width: 100%;
  margin-top: 20px;
  padding: 0;
  list-style-type: none;
}

.submission-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
}

.submission-item:hover {
  background-color: #f9f9f9;
  border-color: #ccc;
}

.submission-details {
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
  display: flex;
}

.submission-details strong {
  font-size: 16px;
}

.submission-details span, .submission-details small {
  color: #5f6368;
  font-size: 14px;
}

.submission-details small {
  font-style: italic;
}

.submission-status {
  text-transform: capitalize;
  white-space: nowrap;
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
}

.status-pending {
  color: #856404;
  background-color: #fff3cd;
}

.status-approved {
  color: #1e8e3e;
  background-color: #e6f4ea;
}

.status-rejected {
  color: #721c24;
  background-color: #f8d7da;
}

.badges-container {
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  display: flex;
}

.badge {
  text-align: center;
  cursor: help;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 60px;
  padding: 5px;
  display: flex;
}

.badge-level {
  font-size: 14px;
  font-weight: bold;
}

.badge-name {
  color: #5f6368;
  font-size: 10px;
}

.badge-locked {
  filter: grayscale();
  opacity: .6;
}

.xp-progress {
  color: #5f6368;
  margin: 5px 0 15px;
  font-size: 14px;
  font-style: italic;
}

.filters-container {
  border-bottom: 1px solid #eee;
  gap: 15px;
  margin: 15px 0;
  padding-bottom: 15px;
  display: flex;
}

.filters-container select {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
}

.pagination-controls {
  border-top: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
}

.pagination-controls button {
  cursor: pointer;
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 8px 12px;
}

.pagination-controls button:hover:not(:disabled) {
  background-color: #f1f3f4;
  border-color: #c6c6c6;
}

.pagination-controls button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.owned-location-link {
  width: 100%;
  color: inherit;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.owned-location-link span {
  color: #888;
  font-size: 14px;
}

.submission-item:hover .owned-location-link span {
  color: #1a0dab;
}

.admin-tabs {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  display: flex;
}

.admin-tabs button {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  margin-bottom: -1px;
  padding: 10px 20px;
  font-size: 16px;
}

.admin-tabs button.active {
  color: #4285f4;
  border-bottom-color: #4285f4;
  font-weight: bold;
}

.admin-tab-content {
  padding-top: 20px;
}

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

.admin-location-group {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
}

.admin-location-group h3 {
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  padding: 15px;
  font-size: 18px;
}

.admin-location-group h3 a {
  color: #1a0dab;
  text-decoration: none;
}

.admin-location-group h3 a:hover {
  text-decoration: underline;
}

.update-table {
  border-collapse: collapse;
  width: 100%;
}

.update-table th, .update-table td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
  padding: 12px 15px;
  font-size: 14px;
}

.update-table th {
  text-transform: uppercase;
  color: #5f6368;
  font-size: 12px;
}

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

.update-table td a {
  color: #1a0dab;
  font-weight: bold;
  text-decoration: none;
}

.update-table td a:hover {
  text-decoration: underline;
}

.admin-actions {
  gap: 8px;
  display: flex;
}

.action-btn {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  display: flex;
}

.action-btn:hover {
  background-color: #f1f3f4;
}

.approve-btn {
  color: #1e8e3e;
}

.reject-btn {
  color: #d93025;
}

.undo-container {
  align-items: center;
  gap: 10px;
  display: flex;
}

.undo-container span {
  color: #5f6368;
  font-style: italic;
}

.undo-btn {
  cursor: pointer;
  color: #1a0dab;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}

.undo-btn:hover {
  background-color: #f1f3f4;
}

.update-table tbody tr.undo-active {
  opacity: .6;
  background-color: #f1f3f4;
}

.form-group-standard {
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  display: flex;
}

.day-label {
  flex-basis: 50px;
  font-weight: bold;
}

.day-controls {
  flex-basis: 200px;
  align-items: center;
  gap: 8px;
  display: flex;
}

.day-controls label {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.time-slots-wrapper {
  flex-direction: column;
  flex-grow: 1;
  gap: 5px;
  display: flex;
}

.time-slot {
  align-items: center;
  gap: 5px;
  display: flex;
}

.add-slot-btn, .remove-slot-btn {
  cursor: pointer;
  text-align: center;
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  border-radius: 50%;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  font-weight: bold;
  line-height: 22px;
}

.remove-slot-btn {
  color: #d93025;
}

.day-error-message {
  color: #d93025;
  padding-left: 5px;
  font-size: 13px;
}

.standard-hours-container {
  margin-bottom: 15px;
  padding: 15px 0;
}

.standard-hours-container h4 {
  margin: 0 0 10px;
  font-size: 16px;
}

.standard-hours-list {
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style-type: none;
}

.standard-hours-list li {
  justify-content: flex-start;
  padding: 4px 0;
  display: flex;
}

.day-range {
  flex-shrink: 0;
  flex-basis: 80px;
  font-weight: bold;
}

.hours-range {
  color: #3c4043;
}

/*# sourceMappingURL=src_app_globals_b805903d.css.map*/