body {
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", sans-serif;
  background-color: #2F4560;
}
.main-dashboard-content{
  overflow-x:hidden !important;
}
/* splash screen  */
.splash-screen {
  height: 100vh;
  /* Full viewport height */
  /* Replace with your desired background color */
  background-image: url('../images/background.png') no-repeat center center;
  position: relative;
  overflow: hidden;
}

/* Faint large logo in the background */
.splash-screen::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../images/background.png') no-repeat center center;
  background-size: contain;
  /* Adjust this based on your design */
  opacity: 0.1;
  /* Faint effect */
  width: 80%;
  height: 80%;
}

/* Foreground logo */
.logo-container {
  position: relative;
  z-index: 10;
}

.logo-img {
  width: 220px;
  /* Adjust size as needed */
  height: auto;
}

/* signup style start  */
.logo-img {
  max-width: 50%;
  /* Adjust logo size */
  height: auto;
}


/* dashboard design start  */
/* projects owners part  */
.card {
  border: 1px solid #f57c00;
  border-radius: 10px;
  padding: 15px;
  margin:5px 20px;
}

.icon {
  font-size: 20px;
  margin: 0 5px;
  color: #007bff;
}

.info-row {
  display: flex;
  align-items: center;
}

.info-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  
}

.info-row span {
  margin:5px 8px;
  font-size: 14px;

}
/* task part  */
.total {
  text-align: right;
}

.total span {
  font-size: 18px;
}
.dashboard-add-btn{
  border:none;
  background-color: white;
  padding:10px;
  border-radius: 5px;
}
.dashboard-add-btn:hover{
  background-color: #f57c00;
  color:white;
  transform: scale(1.1);
}
.dashboard-title {
  position: fixed; /* Fixed the left column */
  top: 0;
  left: 0;
  height: 100vh; /* Full height of the viewport */
  overflow: hidden; /* Prevent scrolling on the left column */
  z-index: 1000; /* Ensure it stays above other content */
}
.dashboard-title a {
  text-decoration: none;
  color: white;
}

.dashboard-title a:hover {
  background-color: #6c757d;
}

.dashboard-title img {
  width: 45px;
}

.dashboard-content {
  margin-left: 16.67%; /* Push the right column to the right of the fixed column */
  overflow-y: auto; 
  min-height: 100vh; /* Ensure the content fills the viewport */
}


.dashboard-card {
  border: 1px solid #EF552C;
  border-radius: 10px;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.dashboard-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}



.dashboard-tab {
  margin-right: 20px;
  cursor: pointer;
  font-weight: normal;
  color: #201f1f;
}

.dashboard-tab-active {
  font-weight: bold;
  border-bottom: 2px solid #000;
  color: #000;
}

.dashboard-task {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.dashboard-task:last-child {
  border-bottom: none;
}

.dashboard-task-title {
  font-size: 16px;
  font-weight: 500;
}

.dashboard-task-icons {
  display: flex;
  align-items: center;
}

.dashboard-task-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
  background-size: cover;
}

.dashboard-task-delegate {
  font-size: 16px;
  font-weight: bold;
  color: #666;
}

/* dashboard chart part  */

.dashboard-chart-card {
  border: 1px solid #EF552C;
  border-radius: 10px;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.dashboard-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dashboard-chart-buttons {
  display: flex;
  gap: 10px;
}

.dashboard-chart-button {
  padding: 5px 10px;
  border: 1px solid #f57c00;
  border-radius: 15px;
  background-color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  color: #666;
}

.dashboard-chart-button:hover {
  background-color: #f9ecec;
}

.dashboard-chart-icon {
  width: 20px;
  height: 20px;
  background-image: url('calendar-icon.png'); /* Replace with your icon URL */
  background-size: cover;
  cursor: pointer;
}

.dashboard-chart-container {
  width: 100%;
  height: 300px;
}

/* service part  */
.dashboard-circle-container {
  position: relative;
  width: 160px;
  height: 160px;
  border: 1px solid #f57c00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-circle-container img {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-circle-container .dashboard-main-avatar {
  width: 30px;
  height: 30px;
  z-index: 2;
}

.dashboard-circle-container .dashboard-secondary-avatar {
  width: 40px;
  height: 40px;
}

.dashboard-circle-container .dashboard-avatar1 {
  top: 50px;
  left: 5px;
}

.dashboard-circle-container .dashboard-avatar2 {
  top: 38px;
  right: 5px;
}

.dashboard-circle-container .dashboard-avatar3 {
  bottom: 5px;
  left: 50px;
}

.dashboard-circle-container .dashboard-notification {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #f05627;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}

.dashboard-circle-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}

/* dashboard design end  */

form {
  /* Semi-transparent background */
  padding: 30px;
  border-radius: 10px;
}

.btn-gradient {
  background: linear-gradient(90deg, #EF552C, #FF9124);
  /* Gradient button */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #FF9124, #EF552C);
  /* Reverse gradient on hover */
}

.text-white {
  color: #ffffff !important;
}

form input,
select {
  height: 45px;
  margin: 25px 0px;
}

.auth-redirect a {
  text-decoration: none;
}

.auth-redirect span {
  color: #EF552C;
}

.text-style1 {
  color: #EF552C;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

/* Default unchecked state */
.custom-switch {
  width: 2rem;
  height: 1rem;
  background-color: #6c757d;
  /* Default gray background */
  border: none;
  transition: background-color 0.3s ease;
}

/* Checked state */
.custom-switch:checked {
  background-color: #FF9124;
  /* Custom orange color */
  border-color: #FF9124;
}

/* Optional: Adjust the toggle circle color */
.custom-switch::before {
  background-color: #fff;
}

/* Optional: Hover effect for better user experience */
.custom-switch:hover {
  background-color: #FFB07E;
  /* Slightly lighter shade on hover */
}

#logo {
  width: 100%;
}



/* dashboard header style  end*/

.navbar {
  border-radius: 45px;
  /* Rounded navbar */
  width: 80%;
}

.dropdown-menu {
  min-width: 150px;
  /* Adjust dropdown menu width */
}

.btn {
  color: white;
}

/* Input field border and reduced height */
#add-client-form .form-control {
  margin-top: 0px;
  border: 1px solid #2F4560;
  /* Custom border */
  height: 36px;
  /* Reduce height */
  font-size: 0.9rem;
  /* Adjust font size */
}

/* Remove placeholder text */
#add-client-form .form-control::placeholder {
  color: transparent;
  /* Hide placeholder text */
}

/* Reduce vertical spacing between fields */


/* Upload container hover effect */
.upload-container {
  width: 100px;
  height: 100px;
  border: 2px dashed #6c757d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-container:hover {
  border-color: #FF9124;
  color: #FF9124;
}

#add-client-form input:focus {
  border: 2px solid #2F4560;
}

#add-client-form select {
  margin-top: 0px;
  border: 1px solid #2F4560;
  height: 36px
}

#add-client-form .form-label {
  margin-bottom: 0px;
  /* Adjust this value as needed */
}

/* edit client form style  */

#edit-client-form .form-control {
  margin-top: 0px;
  border: 1px solid #2F4560;
  /* Custom border */
  height: 36px;
  /* Reduce height */
  font-size: 0.9rem;
  /* Adjust font size */
}

/* Remove placeholder text */
#edit-client-form .form-control::placeholder {
  color: transparent;
  /* Hide placeholder text */
}

#edit-client-form input:focus {
  border: 2px solid #2F4560;
}

#edit-client-form select {
  margin-top: 0px;
  border: 1px solid #2F4560;
  height: 36px
}

#edit-client-form .form-label {
  margin-bottom: 0px;
  /* Adjust this value as needed */
}


/* clients page style start  */

.dropdown-toggle::after {
  margin-left: 5px;
  font-size: 0.8rem;
}

.btn i {
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.bi-search {
  transition: transform 0.2s ease-in-out;
}

.bi-search:hover {
  transform: scale(1.1);
}

.client-drop-down-text {
  text-decoration: none;
  color: #EF552C;
  margin: 0px 5px;
}

.client-delete-btn {
  height: 38px;
}

/* activity styling  */
.activity-section {
  font-family: Arial, sans-serif;
  border: 1px solid #e5e5e5;
}

.nav-tabs .nav-link {
  color: black;
}

.nav-tabs .nav-link.active {
  color: #EF552C;

}

.activity-item h6 {
  font-size: 1rem;
  color: #333;
}

.activity-item a {
  text-decoration: none;
}

.activity-item a:hover {
  text-decoration: underline;
}

.activity-profile {
  width: 30px;
  height: 30px;
}

.client-action {
  color: #EF552C;
}

/* acitive bottom  */
.client-action-card {
  border: 1px solid #000000;
  border-radius: 8px;
}

.client-action-card .rounded-circle {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.client-action-card .badge {
  padding: 0.4rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 30px;
}

.client-table-text {
  font-size: 14px;
  font-weight: 500;
}

.edit-btn {
  color: #FF9124;
  cursor: pointer;
}

.delete-btn {
  color: #EF552C;
  margin: 10px;
  cursor: pointer;
}

/* clients page style end  */

/* dashboard style end  */

/* alert style  */
/* Style for the alert container */
#alert-container {
  display: none;
  margin: 0 auto;
  /* Initially hidden */
}

/* Ensure alerts are centered at the top */
.alert {
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 1000;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
}


/* team styling start  */

#add-employee-form .form-control {
  margin-top: 0px;
  border: 1px solid #2F4560;
  /* Custom border */
  height: 36px;
  /* Reduce height */
  font-size: 0.9rem;
  /* Adjust font size */
}

/* Remove placeholder text */
#add-employee-form .form-control::placeholder {
  color: transparent;
  /* Hide placeholder text */
}

#add-employee-form input:focus {
  border: 2px solid #2F4560;
}

#add-employee-form select {
  margin-top: 0px;
  border: 1px solid #2F4560;
  height: 36px
}

#add-employee-form .form-label {
  margin-bottom: 0px;
  /* Adjust this value as needed */
}


/* edit employe form styling  */
#edit-employee-form .form-control {
  margin-top: 0px;
  border: 1px solid #2F4560;
  /* Custom border */
  height: 36px;
  /* Reduce height */
  font-size: 0.9rem;
  /* Adjust font size */
}

/* Remove placeholder text */
#edit-employee-form .form-control::placeholder {
  color: transparent;
  /* Hide placeholder text */
}

#edit-employee-form input:focus {
  border: 2px solid #2F4560;
}

#edit-employee-form select {
  margin-top: 0px;
  border: 1px solid #2F4560;
  height: 36px
}

#edit-employee-form .form-label {
  margin-bottom: 0px;
  /* Adjust this value as needed */
}
.emp-profile{
  cursor: pointer;
}

/* employee-profile styling start  */
.profile-card {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.profile-card .emp-profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #f57c00;
  object-fit: cover;
}
.profile-card .emp-profile-icon-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}
.profile-card h3 {
  margin: 15px 0 5px;
  font-size: 24px;
  font-weight: 600;
}
.profile-card p {
  margin-bottom: 10px;
  font-size: 20px;
  color: #2F4560;
}
.emp-profile-btn{
  border: 1px solid #2F4560;
  border-radius: 5px;
  color:#2F4560;
  padding:10px;
  font-weight: 700;
}
.emp-profile-btn:hover{
  background-color: #2F4560;
  color:white;
}

/* profile project table start  */
.custom-table {
  border: 1px solid #f57c00;
  border-radius: 10px;
  background-color: #f9f9f9;
  padding: 20px;
}
.custom-table th,
.custom-table td {
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.custom-table img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.custom-table .action-link {
  color: #f57c00;
  font-weight: bold;
  cursor: pointer;
}
.custom-table .status-tab {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
}
.custom-table .status-tab.active {
  color: #f57c00;
  border-bottom: 2px solid #f57c00;
}
.icon-container img {
  width: 24px;
  height: 24px;
  margin: 0 5px;
}
/* profile project table end  */

/* employee-profile styling end */


/* team styling end  */

/* project styling start  */ 
.gradient-card {
  background: linear-gradient(135deg, #EF552C, #FF9124);
  color: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width:100%;
  height: 120px;
  position: relative;
}
.gradient-card h5 {
  margin: 0;
  font-size: 20px;
}
.gradient-card .icon {
  background: white;
  color: black;
  font-weight: bolder;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 10px;
  top: 30px;
}
/* project styling end  */ 

/* service styling start  */
.service-card {
  background: #FFFFFF;
  color: black;
  border-radius: 10px;
  border: #f57c00 1px solid;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width:100%;
  height: 120px;
  position: relative;
  margin:15px 0px;
}
.service-card h5{
  width: 90%;
  color:#2F4560;
  font-size: 20px;
  margin-top: 20px;
}
.service-card .icon {
  background: #f05627;
  color:white;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 10px;
  top: 30px;
}

.service-card .icon :hover{
  transform: rotate(45deg);
}

/* software style start  */
.software-card {
  border: 1px solid #EF552C;
  border-radius: 8px;
  padding: 16px;
  height: 60vh;
  max-width: 250px;
  margin:10px;
}

.software-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.software-card-header h4 {
  color:#2F4560;
  margin: 0;
}

.software-card-header .software-icon {
  background: #f36f21;
  color: white;
  padding: 10px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  font-size: 18px;
}
.software-card .software-icon:hover{
  transform: rotate(45deg);
}
.software-card-body h5 {
  margin: 16px 0;
  font-size: 22px;
  color:#2F4560;
}

.software-progress-container {
  margin: 16px 0;
}

.software-progress-item {
  margin-bottom: 12px;
}

.software-progress-label {
  display: block;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: bold;
  text-align: left;
  color: #2F4560;
}

.software-progress-bar {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.software-planning {
  background: #f36f21;
}

.software-ui {
  background: #f36f21;
}

.software-development {
  background: #f36f21;
}

.software-delivered {
  background: #f36f21;
}

.software-card-body p {
  margin: 8px 0;
  font-size: 18px;
  color:#2F4560;
  opacity: 0.7;
}

.text-style2{
  color: #f36f21;
  font-size: 22px;
}
.text-style3{
  color:#FF9124;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;

}

.software-table-font{
  font-size: 16px;
  font-weight: 600;
}

/* Modal Styling */
.software-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.software-modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 60%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.software-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  background-color: #EF552C;
  color:white;
  padding:0px 10px;
  border-radius: 5px;
  cursor: pointer;
}
/* software style end */

/* marketing style start  */
.marketing-tab-link {
  cursor: pointer;
 font-size: 12px;
 padding: 10px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.marketing-tab-link.marketing-active {
  border-bottom: 2px solid black; /* Underline for active tab */
}

.marketing-tab-content {
  display: none;
}

.marketing-tab-content.marketing-active {
  display: block;
}
/* marketing style end */

/* service styling end */



/* common style  */
/* basic form styling */
.basic-form .form-control {
  margin-top: 0px;
  border: 1px solid #2F4560;
  /* Custom border */
  height: 36px;
  /* Reduce height */
  font-size: 0.9rem;
  /* Adjust font size */
}

/* Remove placeholder text */
.basic-form .form-control::placeholder {
  color: transparent;
  /* Hide placeholder text */
}

.basic-form input:focus {
  border: 2px solid #2F4560;
}

.basic-form select {
  margin-top: 0px;
  border: 1px solid #2F4560;
  height: 36px
}

.basic-form .form-label {
  margin-bottom: 0px;
  /* Adjust this value as needed */
}
.table-font{
  font-size: 15px;
  font-weight: 500;
}

/* task style start here  */
.task-container {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  margin: auto;
}
.task-title {
  text-align: center;
  color: #ff6b35;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.table thead {
  background-color: #f1f1f1;
}
.table th {
  color: #ff6b35;
  font-weight: bold;
}
.priority-dropdown {
  border: none;
  background: none;
  font-weight: bold;
  margin: -10px 0px;
  color: #000;
}
.add-task {
  color: #ff6b35;
  text-align: center;
  display: block;
  border: none;
  background-color: white;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
}
.add-task:hover {
  text-decoration: underline;
}
.action-link {
  color: #ff6b35;
  text-decoration: none;
}
.action-link:hover {
  text-decoration: underline;
}

.add-task-btn {
  border: 2px solid #ff6a00; /* Orange border */
  background-color: transparent; /* Transparent background */
  color: hsl(25, 100%, 50%); /* Orange text color */
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
}

.add-task-btn:hover {
  background: linear-gradient(to right, #ff6a00, #ff3c00); /* Gradient background */
  color: white; /* White text */
  border-color: #ff3c00; /* Darker border */
}

.add-task-btn:active {
  transform: scale(0.95); /* Slight press effect */
}

/* task style end here  */


/* calender styling start  */
/* Fully Responsive CSS for All Devices with Adjusted Mobile Dimensions */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


.calendar-container {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    overflow-x: auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-header .calendar-current-date {
    font-size: 1.5rem;
    font-weight: 600;
}

.calendar-navigation {
    display: flex;
}

.calendar-navigation span {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.5rem;
    color: #f3632b;
    transition: background 0.3s;
}

.calendar-navigation span:hover {
    background: #f0f0f0;
}

.calendar-body {
    padding: 10px;
}

.calendar-weekdays li {
    list-style-type: none;
    color: #f3632b;
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding-top: 10px;
}

.calendar-dates li {
    position: relative;
    padding: 10px;
    font-size: 1rem;
    color: #414141;
    transition: background 0.3s;
    width: 140px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin: 2px;
}

.calendar-dates li.inactive {
    color: #ccc;
    background-color: #F4F4F4;
}

.calendar-dates li:hover:not(.active) {
    background: rgb(229, 255, 215);
    border-radius: 5px;
} 

/* Event Styles */
.event {
    background: #fff5e8;
    color: #ff9124;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 4px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    cursor: pointer;
}

/* Fully Responsive Design - Maintain Layout, Adjust Size */
@media (max-width: 1200px) {
    .calendar-dates li {
        width: 110px;
        height: 150px;
    }
}

@media (max-width: 900px) {
    .calendar-dates li {
        width: 100px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .calendar-dates li {
        width: 90px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .calendar-dates li {
        width: 80px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .calendar-dates li {
        width: 70px;
        height: 100px;
    }
}

@media (max-width: 400px) {
    .calendar-dates li {
        width: 60px;
        height: 90px;
    }
}

/* calender styling end */