/*!****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./utils/src/pictures.css ***!
  \****************************************************************************************************************************************************************************/
.lab-pic-container {
  width: 7rem;
  height: 7rem;
  padding-right: 1rem;
  flex-shrink: 0;
}

.lab-pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smoother transition */
}

.lab-pic:hover {
  transform: scale(1.1); /* Slightly zoom in */
  -o-object-fit: contain;
     object-fit: contain;
}

#close-button svg {
  color: white;
}

/*!************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./utils/src/tags.css ***!
  \************************************************************************************************************************************************************************/
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem;
  border-radius: 2rem;
}

.tag-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-right: 0.25rem;
}

/*!***********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/info_panel.css ***!
  \***********************************************************************************************************************************************************************************/
.lab-card {
  width: 100%;
  max-width: 400px;
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 0 0 8px 0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.lab-header {
  padding: 0;
  position: relative;
}

.lab-image-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lab-featured-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f1f5f9;
}

.lab-small-images-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4px;
  gap: 4px;
}

.lab-small-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lab-small-image-overlay img {
  width: 100%;
  height: 100%;
}

.lab-small-image {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  background-color: #f1f5f9;
}

.lab-close-button {
  position: absolute;
  right: 8px;
  top: 8px;
  background-color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lab-content {
  padding: 16px;
}

.lab-badge-container {
  display: inline-block;
  gap: 8px;
  margin-bottom: 16px;
}

.lab-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
}

.lab-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 4px;
}

.lab-address {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.lab-description {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 8px;
}

.lab-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0 16px 16px 16px;
}

.info_holder p {
  margin: 0;
  line-height: "1.5";
}

.contact {
  width: 100%;
  height: 2rem;
  border: 2px #081543 solid;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: ease-in-out 0.25s;
  color: black;
  background: none;
}

.contact:disabled {
  border-color: gray;
}

.contact:hover:enabled {
  color: white;
  background: #081543;
}

.contact img {
  transition: ease-in-out 0.25s;
  filter: brightness(0) saturate(100%);
}

.contact:hover:enabled > img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(22%)
    hue-rotate(262deg) brightness(113%) contrast(100%);
}

/*!*****************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/schedule_meeting.css ***!
  \*****************************************************************************************************************************************************************************************/
/* Appointment Component Styles */

.appointment {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  min-width: 80px;
}

.appointment-free {
  background-color: #3b82f6;
  color: white;
}

.appointment-reserved {
  background-color: #6b7280;
  color: white;
}

.appointment:hover {
  opacity: 0.9;
}

/* Day Mark Style */
.day-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 60px;
}

.day-mark-enabled {
  color: #000000;
  background-color: transparent;
}

.day-mark-disabled {
  color: #9ca3af;
  background-color: transparent;
}

.day-mark-weekday {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.day-mark-date {
  font-size: 12px;
}

.day-mark:hover {
  background-color: #f3f4f6;
}

/* Schedule Meeting Style */
.schedule-meeting-overlay {
    background: rgba(0,0,0,0.5);
    pointer-events: all;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.schedule-meeting {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: white;
  border-radius: 10px;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.schedule-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  border-radius: 100%;
}

.close-button:hover {
  background-color: #f3f4f6;
}

.schedule-subtitle {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 24px 0;
}

.schedule-navigation {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.nav-button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

.nav-button:hover {
  background-color: #f3f4f6;
}

.days-header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 16px;
}

.schedule-grid-container {
    display: flex;
    justify-content: center;
}

.appointments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 24px;
  width: 500px;
}

.day-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.legend-free {
  background-color: #3b82f6;
}

.legend-occupied {
  background-color: #6b7280;
}


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