  #openPopup.button {
    background-color: #049c9f;
    color: #fff;
    border: none;
    padding: 7px 10px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #appointment-date .button {
    background-color: #049c9f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #appointment-date.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: none;
    z-index: 9999;
  }
  
  #appointment-date .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    overflow-y: scroll;
  }
  
  #appointment-date .calendar-container {
    display: flex;
    justify-content: space-between;
  }
  
  #appointment-date #calendar {
    width: 60%;
  }
  
  #appointment-date .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  #appointment-date .calendar-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }
  
  #appointment-date #calendarDays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
  }
  
  #appointment-date .calendar-day {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
  }
  
  #appointment-date .calendar-day:hover {
    background-color: #f0f0f0;
  }
  
  #appointment-date .calendar-day.selected {
    background-color: #0078d4;
    color: #fff;
  }
  
  #appointment-date .calendar-day.other-month {
    color: #ccc;
  }
  
  #appointment-date .time-slots {
    width: 35%;
    max-height: 400px;
    overflow-y: auto;
    border-left: 1px solid #ccc;
    padding-left: 10px;
  }
  
  #appointment-date .time-slot {
    margin-bottom: 5px;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
  }
  
  #appointment-date .time-slot:hover {
    background-color: #f0f0f0;
  }
  
  #appointment-date .time-slot.selected {
    background-color: #0078d4;
    color: #fff;
  }
  
  #appointment-date .time-slot.unavailable {
    background-color: #ffcccb;
    color: #d32f2f;
    cursor: not-allowed;
  }
  
  #appointment-date .selection-info {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  
  #appointment-date .toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
  }
  
  #selected_date {
    font-size: 13px;
  }

  @media (max-width: 650px) {
    #appointment-date #calendar {
      width: 100%;
      max-height: 500px;
      margin-bottom: 30px;
    }
  
    #appointment-date .time-slots {
      width: 100%;
    }
  
    #appointment-date .calendar-container {
      flex-direction: column;
    }
  
    #appointment-date #calendarDays {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  #openPopup.button {
    background-color: #049c9f;
    color: #fff;
    border: none;
    padding: 7px 10px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #appointment-date .button {
    background-color: #049c9f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #appointment-date.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: none;
    z-index: 9999;
  }
  
  #appointment-date .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    overflow-y: scroll;
  }
  
  #appointment-date .calendar-container {
    display: flex;
    justify-content: space-between;
  }
  
  #appointment-date #calendar {
    width: 60%;
    max-height: 500px;
  }
  
  #appointment-date .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  #appointment-date .calendar-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }
  
  #appointment-date #calendarDays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
  }
  
  #appointment-date .calendar-day {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    cursor: pointer;
  }
  
  #appointment-date .calendar-day:not(.disabled):hover {
    background-color: #f0f0f0;
  }
  
  #appointment-date .calendar-day.selected {
    background-color: #0078d4;
    color: #fff;
  }
  
  #appointment-date .calendar-day.other-month {
    color: #ccc;
  }
  
  #appointment-date .time-slots {
    width: 35%;
    max-height: 400px;
    overflow-y: auto;
    border-left: 1px solid #ccc;
    padding-left: 10px;
  }
  
  #appointment-date .time-slot {
    margin-bottom: 5px;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
  }
  
  #appointment-date .time-slot:hover {
    background-color: #f0f0f0;
  }
  
  #appointment-date .time-slot.selected {
    background-color: #0078d4;
    color: #fff;
  }
  
  #appointment-date .time-slot.unavailable {
    background-color: #ffcccb;
    color: #d32f2f;
    cursor: not-allowed;
  }
  
  #appointment-date .selection-info {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  
  #appointment-date .toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
  }
  
  #selected_date {
    font-size: 13px;
  }
  
  @media (max-width: 650px) {
    #appointment-date #calendar {
      width: 100%;
      max-height: 500px;
      margin-bottom: 30px;
    }
  
    #appointment-date .time-slots {
      width: 100%;
    }
  
    #appointment-date .calendar-container {
      flex-direction: column;
    }
  
    #appointment-date #calendarDays {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
  }



































    
    

    
    
  .details-container{
    max-width: 1200px;
    width: 80%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin: 100px auto 100px;
    gap: 30px;
  }

  .details-left,.details-right {
    box-shadow: 0px 0px 14px 10px rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 10px;
    }
    

  .details-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0d9488
  }

  .details-top-row a {
    text-decoration: none;
    color: #0d9488;
    transition: .4s all;
  }

  .details-top-row a:hover {
    color: #0d675f;
  }


  .details-img  {
    width: 100%;
  }


  .details-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }

  .all-details {
    margin: 40px 0;
  }

  .all-details-row {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .specifikat {
    margin-bottom: 30px;
  }

  .specifika {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b7280;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .specifika p {
    font-size: 14px;
  }

  .specifika svg {
    color: #0d9488;
  }

  .details-departament {
    color: #0d9488;
    margin-bottom:20px ;
  }

  .details-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .vlersimet p .ylli {
    color: orange;
  }

  .vlersimet p {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .numri-vlersimeve {
    font-weight: normal;
    color: #6b7280;
  }

  .details-pershkrimi {
    color: #6b7280;
    line-height: 1.2;
  }

  .te-arriturat {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    margin-top: 40px;
    gap: 30px;
  }

  .arritura {
    background-color: #f9fafb;
    padding: 10px;
    border-radius: 10px;
  }

  .arritura h4 {
    color: #0d9488;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }  

  .arritura p{
    color: #6b7280;
  }

  .details-top-right {
    display: flex;
    justify-content: space-between;
  }
  
  .details-top-right p span{
    color: #0d9488;
    font-weight: 700;
    font-size: 1.5rem;
  }

  .details-top-right p {
    color: #6b7280;
    font-weight: 600;
  }

  .sherbimet-online {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
  }

  .sherbimi {
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 10px;
  }

  .sherbimi-title h4 {
    font-size: 1rem;
  }

  .sherbimi-title p {
    font-size: 14px;
    margin-top: 7px;
    color: #6b7280;
  }

  .sherbimi-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccfbf1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d675f;
  }



  #openPopup {
    margin-top: 30px;
    width: 100% !important;
    padding: 10px !important;
    background-color: black !important;
  }

  .data-line {
    width: 100%;
    height: 2px;
    background-color: #e5e7eb;
    margin: 40px 0;
  }


  .specific-col {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
  }

 

























  /*  */

  @media (max-width: 600px) {
    .popup-content {
        width: 90%;
        height: auto;
    }
    .calendar-container {
        flex-direction: column;
    }
    .calendar-header, .time-slots {
        width: 100%;
    }
}
.popup-content {
    position: relative;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px; /* Increase the font size */
    padding: 10px; /* Add padding for a larger clickable area */
}
#saveDateTime {
    margin-top: 20px;
    float: right;
}
input, select, textarea {
    border-radius: 8px; /* Add border-radius to input fields */
    padding: 10px; /* Add padding for better UI */
    border: 1px solid #ccc; /* Add border for better UI */
    width: 100%; /* Make input fields full width */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    margin-top: 10px; /* Add margin between the fields and the text */
}
.button, .button_1 {
    border-radius: 5px !important; /* Ensure buttons have consistent border-radius */
    padding: 10px 20px; /* Add padding for better UI */
    background-color: #049c9f; /* Add background color for better UI */
    color: white; /* Add text color for better UI */
    border: none; /* Remove border for better UI */
    cursor: pointer; /* Add pointer cursor for better UI */
    width: 100%;
}
.button:hover, .button_1:hover {
    background-color: #049c9f; /* Add hover effect for better UI */
}




@media(max-width: 1100px) {
  .details-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .all-details-row {
    flex-direction: column;
  }
}

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

  .te-arriturat {
    grid-template-columns: 1fr 1fr;
  }
}


@media(max-width: 576px) {
  .sherbimet-online {
    flex-direction: column;
  }

  .te-arriturat {
    grid-template-columns: 1fr;
  }
}