@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;500&display=swap');

body {
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    margin-bottom: 80px;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.header h1 {
    font-size: 24px;
    margin: 0;
}

.header .news {
    font-size: 14px;
    color: #333;
}

.header .user {
    display: flex;
    align-items: center;
    text-align: right;
}

.header .user span {
    font-size: 14px;
}

.header .submit-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header .submit-btn:hover {
    background-color: #0056b3;
}

.main {
    margin-top: 20px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

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



.options h3,
.options p {
    margin: 0;
    padding: 0;
}

.options h3 {
    margin-bottom: 4px; /* Adjust the margin as needed to reduce the gap */
}
.option {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: border-color 0.3s ease;
  cursor: pointer;
  min-width: 220px;
  position: relative;
  line-height: 1em;
}

.option-span {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0 10px; /* Adds padding to the left and right of the text */
  height: 20px; /* Adjust height as needed */
  background-color: #007bff; /* Adjust color as needed */
  border-radius: 4px; /* Adjust border radius as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Adjust text color as needed */
  font-size: 12px; /* Adjust font size as needed */
  font-weight:bold;
}

.option:hover {
    border-color: #007bff;
}

.option.selected {
    border-color: #007bff;
    background-color: #e6f7ff;
}

.option h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.option i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #007bff;
}

.option.selected::after {
  content: '\f00c'; /* Font Awesome checkmark */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #007bff;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 18px;
}

.alert-box {
  display: none;
  background-color: #ffcccc;
  color: #ff0000;
  padding: 10px;
  border: 1px solid #ff0000;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
} 

.numdays {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.numday {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    flex: 1;
    min-width: 150px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    text-align: center;
    position: relative;
}

.numday:hover {
    border-color: #007bff;
}

.numday.selected {
    border-color: #007bff;
}

.numday.selected::after {
    content: '\f00c'; /* Font Awesome checkmark */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #007bff;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 18px;
}

.additional-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-card h3,
.feature-card p {
    margin: 0;
    padding: 0;
}

.feature-card h3 {
    margin-bottom: 4px; /* Adjust the margin as needed to reduce the gap */
}

.feature-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    
    flex: 1;
    min-width: 150px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.feature-card:hover {
    border-color: #007bff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-card.selected {
    border-color: #007bff;
    background-color: #e6f7ff;
}

.feature-card.selected::after {
    content: '\f00c'; /* Font Awesome checkmark */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #007bff;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 18px;
}

.feature-card label {
    font-size: 18px;
    cursor: pointer;
}

.feature-card input[type="checkbox"] {
    display: none;
}

.summary {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.summary .price {
    font-size: 17px;
    color: #333;
}

.summary .submit-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-family: 'Prompt';
  }

.summary .submit-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 1200px) {
    .option {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (max-width: 900px) {
    body {
        margin-bottom: 100px;
    }
    .option {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    body {
        margin-bottom: 100px;
    }
    .option {
        flex: 1 1 100%;
    }
}

a {
  transition: background 0.2s, color 0.2s;
}
a:hover,
a:focus {
  text-decoration: none;
}

#wrapper {
  padding-left: 0;
  transition: all 0.5s ease;
  position: relative;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #222;
  transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

.sidebar-brand {
  position: absolute;
  top: 0;
  width: 250px;
  text-align: center;
  padding: 20px 0;
}
.sidebar-brand h2 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.sidebar-nav {
  position: absolute;
  top: 75px;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav > li {
  text-indent: 10px;
  line-height: 42px;
}
.sidebar-nav > li a {
  display: block;
  text-decoration: none;
  color: #757575;
  font-weight: 300;
  font-size: 15px;
}
.sidebar-nav > li > a:hover,
.sidebar-nav > li.active > a {
  text-decoration: none;
  color: #fff;
  background: #007bff;
}
.sidebar-nav > li > a i.fa {
  font-size: 20px;
  width: 60px;
}

#navbar-wrapper {
    width: 100%;
    position: absolute;
    z-index: 2;
}
#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}
#navbar-wrapper .navbar {
  border-width: 0 0 0 0;
  background-color: #eee;
  font-size: 24px;
  padding-left: 15px;
  margin-bottom: 0;
  border-radius: 0;
}
#navbar-wrapper .navbar a {
  color: #757575;
}
#navbar-wrapper .navbar a:hover {
  color: #007bff;
}

#content-wrapper {
 
  position: absolute;
  padding: 15px;
  top: 100px;
}
#wrapper.toggled #content-wrapper {
  position: absolute;
  margin-right: -250px;
}

@media (min-width: 992px) {
  #wrapper {
    padding-left: 250px;
  }
  
  #wrapper.toggled {
    padding-left: 60px;
  }

  #sidebar-wrapper {
    width: 250px;
  }
  
  #wrapper.toggled #sidebar-wrapper {
    width: 60px;
  }
  
  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -190px;
}
  
  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -190px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 60px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #wrapper {
    padding-left: 60px;
  }

  #sidebar-wrapper {
    width: 60px;
  }
  
#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}
  
  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 250px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    /* margin-right: 250px; */
  }
}

@media (max-width: 767px) {
  #wrapper {
    padding-left: 0;
  }

  #sidebar-wrapper {
    width: 0;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 250px;
  }
  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #navbar-wrapper {
    position: fixed;
  }

  #wrapper.toggled {
    padding-left: 250px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    /* margin-right: 250px; */
  }
}

.selected-value-label {
  font-size: 20px; /* Adjust size as needed */
  color: #007bff; /* Blue color */
  font-weight: bold;
}

.selected-value-price {
  font-size: 26px; /* Adjust size as needed */
  color: #333; /* Darker color for the price */
  font-weight: bold;
}

.selected-value-details {
  font-size: 16px; /* Smaller size for details */
  color: #4b4b4b; /* Darker color for details */
}


.user-info {
  display: flex;
  flex-direction: column;
  margin-right: 10px; /* Adjust the space between user info and button */
  margin-bottom: 16px;
}

.user-info span {
  font-size: 14px;
  font-weight: bold;
}

.user-info small {
  font-size: 12px;
  color: #666;
}


/* Additional styles for login form */
.login-form {
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-form .form-group {
  margin-bottom: 15px;
}

.login-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.login-form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.login-form .form-control:focus {
  border-color: #007bff;
}

.login-form .submit-btn {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form .submit-btn:hover {
  background-color: #0056b3;
}

.login-message {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}


/* Loading screen styles */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f4f4f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#loading-screen .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

#loading-screen p {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}


.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}


/* Modern table styles */
.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modern-table thead {
  background-color: #007bff;
  color: #fff;
}

.modern-table thead th {
  padding: 12px;
  text-align: left;
}

.modern-table tbody tr {
  border-bottom: 1px solid #ddd;
}

.modern-table tbody tr:nth-of-type(even) {
  background-color: #f9f9f9;
}

.modern-table tbody td {
  padding: 12px;
  text-align: left;
}

.modern-table tbody tr:hover {
  background-color: #f1f1f1;
}


/* Centering the button */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Styling the modern button */
.modern-button {
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.modern-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.modern-button:active {
  background-color: #004085;
  transform: translateY(0);
}

.old-price {
  text-decoration: line-through;
  color: #888;
  
  font-size: 15px;
}

.new-price {
  color: #e60000;
  font-weight: bold;
}

.discount {
  color: #008000;
  
  font-weight: bold;
  font-size: 17px;

}