:root {
  --primary-color: #285855;
  --secondary-color: #ffd700;
  --light-bg: #f6f7f9;
  --text-color: #333;
  --text-color-black: #000;
  --muted-text: #888;
  --box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  border: none;
  outline: none;
  background: none;
}

img {
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  text-decoration: none;
  color: var(--text-color);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-toggle i {
  margin-right: 0.3125rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  z-index: 1;
  min-width: 10rem;
  border-radius: 0.5rem;
}

.dropdown-menu a {
  padding: 0.625rem;
  text-decoration: none;
  color: var(--text-color);
  display: block;
  white-space: nowrap;
  font-size: 0.875rem;
  border-bottom: 1px solid #f8f8f8;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.top-header-bar .user-profile {
  display: flex;
  align-items: center;
}

.top-header-bar .user-profile .user-icon {
  max-width: 1.875rem;
  margin-right: 0.625rem;
}

.top-header-nav-area ul li a.agent_number {
  background-color: var(--secondary-color);
  padding: 0.625rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
}

.top-header-nav-area ul li a.agent_number .fa-phone {
  margin-right: 0.3125rem;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
}

.search {
  padding: 0.625rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  width: 100%;
}

.sidebar-nav li {
  margin-bottom: 0.625rem;
}

.sidebar-nav a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--text-color);
  display: block;
  padding: 0.625rem 0.9375rem;
}

.sidebar-nav a span {
  margin-left: 0.375rem;
  display: inline-block;
}

.sidebar-nav a:hover, 
.sidebar-nav a.active {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.5rem;
}

.col {
  flex-basis: 100%;
}

.col-wrapper .col:last-child {
  flex-basis: 45%;
}
  .listing-wrapper .col-wrapper .col:last-child {
    flex-basis: 100%;
  }

.dashboard-header {
  margin-bottom: 1.5625rem;
}
.dashboard-header p {
  color: var(--text-color-black);
}
.top-stats {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.rental_revenue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-label {
  color: var(--muted-text);
}

.rental_revenue_amount {
  display: flex;
  align-items: flex-end;
}

.top-stats .stat-card {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
}

.top-stats .stat-card p {
  font-size: 0.875rem;
  color: var(--muted-text);
  margin-bottom: 0;
}

.top-stats .compare-item-block {
  text-align: left;
}

.top-stats .stat-card h3 {
  font-size: 2.25rem;
  margin: 0 0.625rem 0 0;
  line-height: 1.8125rem;
  font-weight: 500;
  color: var(--text-color-black);
}

.stat-growth {
  color: #368a36;
  background: #e2efe2;
  padding: 0.125rem 0.3125rem;
  border-radius: 36px;
  font-size: 0.875rem;
  display: inline-block;
  min-width: 5rem;
  margin-right: 0.625rem;
  text-align: center;
}
.search-filter .filter-btn i,
.stat-growth i {
  margin-right: 5px;
}

.top-stats .financial-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  justify-content: flex-end;
}

.top-stats .financial-stat .stat-item {
  display: flex;
  align-items: center;
  text-align: left;
  border-right: 1px solid #c1b9b9;
  padding-right: 1rem;
}

.top-stats .financial-stat .stat-item:last-child {
  border: 0;
}

.top-stats .financial-stat .stat-item span {
  color: var(--muted-text);
  font-size: 0.875rem;
}

.top-stats .financial-stat .stat-item .icon-holder {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 100%;
  background: orange;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-right: 0.9375rem;
}
.top-stats .financial-stat .stat-item .icon-holder i {
  font-size: 1.8rem;
}
.top-stats .financial-stat .stat-item:nth-child(2) .icon-holder {
  background-color: var(--primary-color);
}

.top-stats .financial-stat .stat-item:nth-child(3) .icon-holder {
  background-color: #d44c32;
}

.top-stats .financial-stat .stat-item h3 {
  font-size: 1.5rem;
}

.main-stats {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.main-stats.col-wrapper.financial-dashboard {
      flex-direction: column;
}
.quick-stats .unit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quick-stats .unit-header h5 {
  font-weight: 500;
}

.duraction_filter ul {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.duraction_filter ul li a {
  padding: 0.5rem;
  border: 1px solid transparent;
  font-weight: 500 !important;
}

.duraction_filter ul li a:hover,
.duraction_filter ul li a.active {
  border-color: #c8c8c8;
  border-radius: 0.5rem;
  background: #f8f8f8;
  font-weight: 600;
}

.quick-stats .rental_revenue_amount {
  justify-content: space-between;
  margin: 0.625rem 0;
  align-items: center;
}
.quick-stats .rental_revenue_amount p {
 margin-bottom: 0;
}

.quick-stats .rental_revenue_amount h3 {
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text-color-black);
}

.quick-stats .rental_revenue_amount .compare-item-block {
  display: flex;
}

.quick-stats .chart-container {
  min-height: 20rem;
}

/*
.chart-container canvas {
  height: 18.75rem !important;
  width: 100% !important;
}*/

.card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9375rem;
}

.card .card-header h5 {
  font-weight: 500;
  color: var(--text-color-black);
}

.card .card-header .dropdown-toggle {
  border: 1px solid #ddd;
  padding: 0.125rem 0.5rem;
  border-radius: 0.5rem;
}

.card .card-header .dropdown-toggle i {
  margin-right: 0;
}

.card .card-header .dropdown-menu {
  left: unset;
  right: 0;
}

.card {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.5rem;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.card-body {
  height: 100%;
}

.no-reservations {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #d3d3d3;
}

.quick-stats .graph-placeholder {
  background-color: #f0f0f0;
  padding: 1.25rem;
  text-align: center;
}

.search-filter {
  display: flex;
  align-items: center;
}
.search-filter p {
  margin-bottom: 0;
}

.search-filter-holder {
  position: relative;
  margin-right: 0.9375rem;
  display: flex;
  align-items: center;
}

.search-filter input {
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

.search-filter .search-filter-holder i {
  position: absolute;
  right: 0.625rem;
}

.search-filter .filter-btn {
  padding: 0.625rem 0.9375rem;
  border: none;
  background-color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid #ccc;
}

.unit-wrapper {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.listing-wrapper .unit-wrapper {
  width: 100%;
}
.listing-wrapper .unit-wrapper .ex-listing {
  margin-bottom: 5px;
}
.unit-wrapper .unit-card {
  background-color: white;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
  max-width: 21.875rem;
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 0.8rem;
  width: 100%;
}
.listing-wrapper .unit-wrapper .unit-card {
    display: flex;
    align-items: flex-start;
    max-width: 100%;
}
.listing-wrapper .unit-wrapper .unit-card .unit-img-holder {
      margin-right: 15px;
    max-width: 250px;
}
.listing-wrapper .sidebar-search-area {
      width: 100%;
    margin: 0;
        display: flex;
}
.listing-wrapper .sidebar-search-area .form-control{
      padding-left: 30px !important;
}
.listing-wrapper .unit-wrapper .unit-card .unit-info {
padding: 0;
}
.btn-theme-app{
    padding: 8px 15px;
    background: #285855;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    font-weight: normal;
}
.unit-wrapper .unit-card .unit-img-holder {
  position: relative;
}

 
.unit-wrapper .unit-card .unit-img-holder img {
  width: 100%;
  height: 9.375rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.listing-wrapper .unit-wrapper .unit-card .unit-img-holder img {
  height: auto;
}

.unit-wrapper .unit-card .unit-img-holder .unit-view {
  position: absolute;
  right: 0.625rem;
  background: #fff;
  border-radius: 100%;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 0.625rem;
  cursor: pointer;
}

.unit-wrapper .unit-card .unit-img-holder .unit-view i {
  color: var(--primary-color);
}

.unit-wrapper .unit-card .unit-info {
  padding: 0.9375rem 0;
}

.unit-wrapper .unit-card .unit-info-head {
  display: flex;
}

.unit-wrapper .unit-card .unit-info h3 {
  margin-top: 0;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--text-color-black);
  font-weight: 500;
  margin-right: 15px;
}

.unit-wrapper .unit-card .location {
  margin-bottom: 0.9375rem;
}

.unit-wrapper .unit-card .price {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.625rem;
}

.unit-wrapper .unit-card .features {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.unit-wrapper .unit-card .features span {
  border: 1px solid #ddd;
  padding: 0.125rem 0.6rem;
  min-width: 4.0625rem;
  border-radius: 36px;
  text-align: center;

}
.unit-wrapper .unit-card .features span,
.unit-wrapper .unit-card .features span i {
  margin-right: 0.625rem;
}


/*calender css */

.calendar-container .calendar-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
#multi .calendar-header {
  justify-content: center;
  margin-bottom: 0;
}
.calendar-container .calendar-header h2 {
  font-size: 24px;
      margin-right: 1.5rem;
}

.calendar-container .view-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #888;
  flex: 1;
}
.calendar-container .calendar-header .filters .select-holder select {
      min-width: 200px;
    margin-left: 20PX;
}
.calendar-container .view-tabs span {
  cursor: pointer;
  font-size: 16px;
  color: #333;
  padding: 0 10px;
}
.calendar-container .view-tabs span:hover,
.calendar-container .view-tabs span.active {
cursor: pointer;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid #285855;
    margin-bottom: -1px;
}

.calendar-container .filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  flex-wrap: wrap;
}
.calendar-container .filters .select-holder {
  flex: 1;
  display: flex;
}
.calendar-container .filters .search-area {
  display: flex;
  gap: 5px;
}
.calendar-container .filters select {
  max-width: 120px;
  width: 100%;
  margin-right: 10px;
  background: #eee;
}
.calendar-container .filters .search-input-area {
      display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;

}
.calendar-container .filters .search-input-area input{
  padding-right: 30px;
}
.calendar-container .filters .search-input-area i {
       position: absolute;
    right: 10px;
}
.calendar-container .filter-btn, .sort-btn,
.calendar-container .filter-btn {
  display: flex;
  align-items: center;
}
.calendar-container .sort-btn i,
.calendar-container .filter-btn i{
  margin-right: 10px;
}
.calendar-container .filters select, .calendar-container .filters input, .calendar-container .filter-btn, .sort-btn {
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 4px;
    min-height: 36px;
}

.calendar-container .calendar-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 0;
}

.calendar-container .calendar-table thead tr th, 
.calendar-container .calendar-table thead tr:nth-child(1) td {
  border-top: 0;
}
.calendar-container .calendar-table tr:nth-child(1) th span, 
.calendar-container .calendar-table tr:nth-child(1) td span{
  font-size: 14px;
  font-weight: normal;
  color: #888;
}
.calendar-container .calendar-table tr th:nth-child(1), 
.calendar-container .calendar-table tr td:nth-child(1) {
  border-left: 0;
}
.calendar-container .calendar-table tr.active-listing td{
  background-color: #eee;
}
.calendar-container .calendar-table tr.active-listing td.booking{
  background-color: #ffd700;
}
.calendar-container .calendar-table #multi td.booking{
  background-color: #ffd700;
}
.calendar-container .calendar-table th,  
.calendar-container .calendar-table td {
     border-right: 0;
         border-left: 0;
  padding: 8px;
  text-align: center;
      min-width: 85px;
      position: relative;
}
.calendar-container .calendar-table td::after {
content: '';
    position: absolute;
    top: 0;
    right: -11px;
    width: 100%;
    height: 100%;
    border-left: 2px solid #fff;
    transform: skewX(328deg);
    transform-origin: top left;
}
.calendar-container .calendar-table  #multi{
  overflow-x: auto;
}

.calendar-container .calendar-table  #multi tr>th:first-child,
.calendar-container .calendar-table  #multi tr>td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    min-width: 200px;
        z-index: 9;
}
.calendar-container .calendar-table  #multi tr>th:first-child::after,
.calendar-container .calendar-table  #multi tr>td:first-child::after {
content: '';
    position: absolute;
    top: 0;
    right: -11px;
    width: 100%;
    height: 100%;
    border-left: 2px solid #000;
    transform: skewX(328deg);
    transform-origin: top left;
}



.calendar-container .calendar-table #multi tr > td.booking::after,
.calendar-container .calendar-table #multi tr > th:first-child::after,
.calendar-container .calendar-table #multi tr > td:first-child::after {
  content: none !important;
}

.calendar-container .calendar-table #multi tr > td.booking::before {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, transparent 87%, #eeeeee 75%);
    z-index: 1;
}
.calendar-container .calendar-view {
  display: none;
}

.calendar-container .calendar-view.active {
  display: block;
}
.calendar-container .date-silder {
      display: flex;
    align-items: center;
    justify-content: center;
        color: #285855;
}
.calendar-container .date-silder i{
      margin: 0 5px;
      cursor: pointer;
      font-size: 20px;
}
.calendar-container .calendar-table th:last-child,  
.calendar-container .calendar-table td:last-child {
  border-right: 0;
}

.calendar-container .calendar-table .guest-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.calendar-container .calendar-table .guest-info p {
  margin-bottom: 0;
  color: #fff;
}
.calendar-container .calendar-table .airbnb-logo {
  width: 24px;
  height: 24px;
  background-color: red;
  border-radius: 50%;
  margin-right: 10px;
}
.pagination-control {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #6c757d;
}

.pagination-control label,
.pagination-control span {
  margin-right: 5px;
}

.pagination-control select {
    padding: 4px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    outline: none;
    color: #495057;
    appearance: none;
    background-color: white;
    max-width: 50px;
    text-align: center;
    margin-right: 10px;
}

.pagination-control select:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.monthly-calendar .calendar {
    display: grid;
    width: 100%;
    grid-auto-columns: minmax(120px, 1fr);
    grid-template-rows: 50px;
    grid-auto-rows: 120px;
    overflow: auto;
}

.monthly-calendar .calendar-container {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.monthly-calendar .calendar-header {
       display: flex;
    align-items: center;
}

.monthly-calendar .calendar-header h1 {
    margin: 0;
    font-size: 18px;
}

.monthly-calendar .calendar-header p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(#51565d, .4);
}

.monthly-calendar .calendar-header button {
    background: none;
    border: none;
    padding: 0;
    color: rgba(#51565d, .7);
    cursor: pointer;
    outline: 0;
}
.monthly-calendar .day.event .event-bar{
    background-color: #285855;
    margin-top: 25px;
    text-align: left;
    padding: 0.3rem;
    border-radius: 6px;
    color: #fff;
}
.monthly-calendar .day {
    border-bottom: 1px solid rgba(166, 168, 179, 0.12);
    border-right: 1px solid rgba(166, 168, 179, 0.12);
    text-align: right;
    padding: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    box-sizing: border-box;
    color: #666b6f;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.monthly-calendar .top-header {
  display: flex;
  justify-content: space-between;
}
.monthly-calendar .top-header i{
  font-size: 22px;
    color: green;
    font-weight: 800;
}
.monthly-calendar .bottom-footer span{
    background: #eeeeeea3;
    padding: 1px 8px;
    border-radius: 4px;
    border: 1px solid #dddddd30;
    margin-bottom: 5px;
    font-size: 12px;
    display: inline-block;
}
.monthly-calendar .day:nth-of-type(7n + 7) {
    border-right: 0;
}

.monthly-calendar .day:nth-of-type(n + 1):nth-of-type(-n + 7) { grid-row: 2; }
.monthly-calendar .day:nth-of-type(n + 8):nth-of-type(-n + 14) { grid-row: 3; }
.monthly-calendar .day:nth-of-type(n + 15):nth-of-type(-n + 21) { grid-row: 4; }
.monthly-calendar .day:nth-of-type(n + 22):nth-of-type(-n + 28) { grid-row: 5; }
.monthly-calendar .day:nth-of-type(n + 29):nth-of-type(-n + 35) { grid-row: 6; }

.monthly-calendar .day:nth-of-type(7n + 1) { grid-column: 1; }
.monthly-calendar .day:nth-of-type(7n + 2) { grid-column: 2; }
.monthly-calendar .day:nth-of-type(7n + 3) { grid-column: 3; }
.monthly-calendar .day:nth-of-type(7n + 4) { grid-column: 4; }
.monthly-calendar .day:nth-of-type(7n + 5) { grid-column: 5; }
.monthly-calendar .day:nth-of-type(7n + 6) { grid-column: 6; }
.monthly-calendar .day:nth-of-type(7n + 7) { grid-column: 7; }

.monthly-calendar .day-name {
    font-size: 14px;
    text-transform: capitalize;
    color: #505456;
    text-align: left;
    border-bottom: 1px solid rgba(166, 168, 179, 0.12);
    line-height: 50px;
    font-weight: 500;
    padding-left: 8px;
}

.monthly-calendar .day--disabled {
    color: rgba(#98a0a6, 0.6);
    background-color: #ffffff;
    opacity: 0.5;
    cursor: not-allowed;
}

.monthly-calendar .light {
    background-color: #fff;
}
.yearly-calendar {
     display: grid;
    grid-template-columns: repeat(4, 1fr);
        border-style: solid;
    border-width: 1px 0 1px 1px;
    border-color: #ddd;
}

.yearly-calendar .month {
border-right: 1px solid #ddd;
}

.yearly-calendar .month-header {
      color: #333;
    padding: 10px;
    text-align: left;
    font-weight: 500;
}

.yearly-calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
}

.yearly-calendar .day {
    padding: 8px;
    text-align: center;
    margin: 2px;
}
.yearly-calendar .day.active,
.yearly-calendar .day:hover{
      background: #285855;
    color: #fff;
    cursor: pointer;
}

.app-res h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.app-res .filters {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.app-res .filters select {
      font-size: 14px;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 4px;
    min-height: 36px;
    max-width: 250px;
    margin-right: 15px;
}

.app-res .filter-input {
  padding: 8px;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

.app-res .filter-button {
      padding: 8px 15px;
    background-color: #285855;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-height: 40px;
}

.app-res .filter-button:hover {
  background-color: #104845;
}

.app-res .app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 0;
}

.app-res .app-table th, .app-res .app-table td {
  padding: 5px 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  white-space: nowrap;
}
.app-res .app-table td:last-child,
.app-res .app-table td:nth-child(1) {
    color: #285855;
}

.app-res .app-table th {
  font-weight: bold;
}

.app-res .app-table tbody tr:hover {
  background-color: #f9f9f9;
}

.app-res .app-table td img {
  width: 30px;
  height: auto;
}

.training-videos .videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 20px;
  margin-top: 40px;
}

.training-videos .video-card {
  padding: 15px;
}

.training-videos .video-card img {
  width: 100%;
    object-fit: cover;
    height: 100%;}

.training-videos .video-card p {
  margin: 15px 0 25px;
  font-weight: bold;
  color: #333;
}

.training-videos .video-card .video-holder {
    max-height: 277px;
    height: 100%;
    overflow: hidden;
}

.table-layout {
  border: 0;
}
.table-layout td { 
    padding: .5rem;
        border-bottom: 0;
}
.table-layout td:first-child,
.table-layout th:first-child {
padding-left: 0;
}
.table-layout td::after 
{
  display: none;
}
.table-layout td:first-child{
      color: #285855;
}
 .table-layout th { 
    padding: .5rem;
}


.table-layout {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.table-layout thead th {
    position: sticky;
    top: 0;
    z-index: 0;
    font-weight: 600;
}

.table-layout tbody {
    display: block;
    height: 300px;
    overflow-y: auto;
    width: 100%;
}

.table-layout thead, 
.table-layout tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.btn-view-all {
    padding: .8rem;
    width: 100%;
    text-align: center;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
         margin-top: 1rem;
}
.btn-view-all:hover {
    background: #285855;
    border-color: #285855;
    color: #fff;
}
 .pagination-block {
      display: flex;
    justify-content: center;
}
  .pagination {
      display: flex;
      list-style-type: none;
      padding: 0;
      margin: 20px 0;
      justify-content: center;
      align-items: center;
      font-family: Arial, sans-serif;
      border: 1px solid #ddd; /* Overall border */
      border-radius: 8px; /* Border radius */
      overflow: hidden; /* Ensure rounded corners are visible */
  }

  .pagination li {
      margin: 0; /* No space between pages */
  }

  .pagination a {
      text-decoration: none;
      color: #285855; /* Primary color */
      padding: 8px 12px;
      display: block;
      border-right: 1px solid #ddd; /* Inner border between pages */
      transition: background-color 0.3s, color 0.3s;
      font-weight: normal !important;
  }

  .pagination li:last-child a {
      border-right: none;
  }

  .pagination a:hover, .pagination a.active {
      background-color: #285855;
      color: white;
  }
  .pagination a.disabled {
      color: #ccc;
      pointer-events: none;
      border-color: #ccc;
  }

.statement-header {
      display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.download-section {
      display: flex;
    align-items: center;
}

.download-btn  {
    min-width: 200px;
    padding: 0.8rem;
    background: #285855;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
}
.file-select {
      margin-left: 1rem;
    border: 1px solid #ddd;
}
.summary-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.summary-cards .card {
    flex: 1;
    text-align: center;
    border: 0;
}
.summary-cards .card .card-header-icon {
  display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}
.summary-cards .card .card-header-icon i{
      margin-right: 10px;
    font-size: 1.5rem;
    color: #285855;
}
.summary-cards .card h2 {
     font-size: 16px;
    margin-bottom: 0;
    font-weight: normal;
}

.summary-cards .card p {
    font-size: 20px;
    color: #2c3e50;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 0;
}

table thead th {
    background-color: #fff;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table tbody td, table tfoot td {
    padding: 10px;
    border-bottom: 0;
}

tfoot td {
    font-weight: bold;
    border-top: 1px solid #ddd;
}
.rental-activity table,
.expenses table {
    margin-bottom: 40px;
}
.expenses table tbody td:nth-child(3),
.expenses table tbody td:nth-child(4),
.rental-activity table tbody td:nth-child(3),
.rental-activity table tbody td:nth-child(1){
  color: #285855;
} 

.channel-list {
    display: flex;
    align-items: center;
}

.channel-list .label-dots {
      width: 10px;
    height: 10px;
    background: orange;
    border-radius: 100%;
    margin: 0 5px;
}

.channel-list .label-dots.active {
      background: #285855;
}
.brk-account-nav a i {
    margin-right: 10px;
}




.financial-dashboard .tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f4f4f4;
    border: none;
    border-bottom: 2px solid transparent;
}

.financial-dashboard .tab-btn.active {
    border-bottom: 2px solid #285855;
    background-color: #fff;
}

.financial-dashboard .tab-content {
    display: none;
}

.financial-dashboard .tab-content.active {
    display: block;
}

.financial-dashboard .dashboard-header {
      display: flex;
    align-items: center;
}

.financial-dashboard .dashboard-header  h1 {
      margin-right: 25px;
}

.financial-dashboard .dashboard-header .tabs {
      flex: 1;
    border-bottom: 1px solid;
}

.financial-dashboard .filters {
      display: flex;
    align-items: center;
}

.financial-dashboard .filters .filters-holder {
      flex: 1;
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.financial-dashboard .filters .filters-holder label {
  display: block;
      margin-bottom: 5px;
}
.financial-dashboard .filters .filters-holder .form-field:first-child {
      flex: 1;
          max-width: 300px;
}
.financial-dashboard #expenses .filters .filters-holder .form-field:first-child {
    max-width: 150px;
}
/*.financial-dashboard #expenses .filters .filters-holder .form-field {
  margin-right: 15px;
}*/
.financial-dashboard .filters .filters-holder .form-field:first-child .select2-container {
  width: 100% !important;
}
.financial-dashboard .filters.footer-filter .filters-holder {
align-items: end;
}
.financial-dashboard .filters.footer-filter .filters-holder .form-field:first-child {
      flex: none;
          max-width: 300px;
}
.financial-dashboard .filters .filters-holder .form-field input,
.financial-dashboard .filters .filters-holder .form-field select  {
    border: 1px solid #cfcfcf;
    min-height: 42px;
    padding: 5px 15px;
    background-color: #fff;
    border-radius: 0;
}

.financial-dashboard .filters .reset-button{
      padding: 10px 25px;
    background: #285855;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}
.download-report {
      display: flex;
    justify-content: end;
}
.download-report .dropdown .dropdown-toggle {
    background: #285855;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.download-report  .dropdown .dropdown-toggle i{
      margin-left: 15px;
}
.download-report .dropdown-menu {
 min-width: 11rem;
}
.financial-dashboard .stats {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
        padding: 15px;
    background: #f4f4f4;
    gap: 20px;
    margin-bottom: 15px;
}

.financial-dashboard .stat-box {
    padding: 10px;
    background-color: #f4f4f4;
}
.financial-dashboard .stat-box p {
      margin-bottom: 5px;
}
.financial-dashboard .stat-box h2 {
      font-size: 1.8rem;
          font-weight: 500;
          margin-bottom: 0;
}
.charts-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.chart-container {
    background-color: #f4f4f4;
    padding: 20px;
}
.chart-container.reservation-block {
      display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.chart-container.reservation-block h4,
.chart-container.reservation-block h5 {
  margin-bottom: 0;
}
.chart-container.reservation-block .reservation-count {
  text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.chart-container.span-8 {
    grid-column: span 8;
}
.chart-container .filters .filters-holder{
      margin-bottom: 15px;
}
.chart-container.span-4 {
    grid-column: span 4;
}

body .select2-container {
    margin-right: 10px;
        width: auto !important;
    background: #fff !important;
}

body .select2-container .select2-results__option--highlighted[aria-selected], body .select2-container .select2-results__option[aria-selected=true] {
    background-color: #285855 !important;
    color: #fff;
}

.occupancy-tab .filters {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
    position: relative;
}
.filters .filter-dropdown{
    position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px;
  z-index: 1000;
  min-width: 550px;
}
.occupancy-tab .filter-btn {
    background-color: #285855;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
 margin-right: 15px;
    border-radius: 5px;
}

.occupancy-tab .filter-options {
    display: flex;
}

.occupancy-tab .filter-options button{
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    border-radius: 0;
}
.occupancy-tab .filter-options .status-filter,
.occupancy-tab .filter-options .range-month {
      margin-right: 15px;
      background-color: #ddd;
}
.occupancy-tab .filter-options button.active {
      background-color: #285855;
    color: white;
}
.occupancy-tab .date-range {
    display: flex;
    align-items: center;
}

.occupancy-tab .date-range span {
    margin-right: 5px;
    background: #285855;
    padding: 1px 5px;
    color: #fff;
}
.occupancy-tab .date-range .reset-filters{
  color: #ff0000;
}



.occupancy-tab .app-table td:first-child{
      color: #285855;
}


.occupancy-tab .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input.per-page {
    width: 50px !important;
    padding: 5px !important;
    text-align: center;
}

.occupancy-tab .page-navigation button {
    background-color: #2c8f88;
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}

.occupancy-tab .page-navigation span {
    padding: 8px 15px;
    background-color: #f4f4f4;
    border-radius: 5px;
}
.woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
    position: relative;
    padding-left: 15px;
    padding-right: 38px;
    line-height: 41px;
     background: #fff; 
    color: #000;
    border: 1px solid #cfcfcf;
    font-size: 14px;
}


.app-tabs .tabs {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
    justify-content: space-between;
    height: 47vh;
}

.app-tabs .tabs .tab-list-holder{
      display: flex;
    flex-direction: column;
}
.app-tabs .tablinks {
    background-color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 5px;
}
.app-tabs .tablinks p {
      margin: 0;
          color: #0b6060;
          font-size: 12px;
}
.app-tabs .tablinks.active,
.app-tabs .tablinks:hover {
    background-color: #285855;
    color: #fff;
}
.app-tabs .tablinks.active p,
.app-tabs .tablinks:hover p {
    color: #fff;
}


.app-tabs .tabcontent {
    display: none;
    padding: 15px;
    border-left: 1px solid #ccc;
    height: 50vh;
    margin-left: 10px;
}

.app-tabs .tabcontent.active {
    display: block;
}

.filter-tabs-area {
  display: flex;
  align-items: flex-start;
}

.filter-tabs-area .tab-holder {
  flex: 1;
}

.app-tabs .tabcontent .sidebar-search-area {
    margin: 0 0 1rem;
    width: 100%;
}

.listing-item-list .listing-item{
    display: flex;
    border: 1px solid #ccc;
    padding: 0.3rem;
    border-radius: 4px;
    margin-bottom: 10px;
}

.listing-item-list .listing-item .listing-image {
    width: 70px;
    height: 43px;
    margin-right: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.listing-item-list .listing-item .listing-details,
.listing-item-list .listing-item .listing-image img {
  width: 100%;
}


.checkbox-container {
    display: flex;
    align-items: center;
    margin: 10px;
    position: relative;
}

.checkbox-label {
    cursor: pointer;
    padding-left: 35px;
    user-select: none;
}

.checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f1f1f1;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}
.listing-item-list .listing-item .listing-details .checkbox-custom  {
    top: -9px;
    right: 0;
        left: unset;
}
.checkbox:hover + .checkbox-custom {
    border-color: #999;
}

.checkbox:checked + .checkbox-custom {
    background-color: #285855;
    border-color: #285855;
}

.checkbox:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.date-tab .date-holder .form-field {
    margin-bottom: 15px;
}
.date-tab .date-holder label {
      display: block;
    margin-bottom: 10px;
}
.date-tab .date-holder input {
  padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

.channel-tab .checkbox-container {
    margin: 10px 0;
}
.col-indicate {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
        margin-right: 5px;
}
.channel-tab .checkbox-label {
    padding-left: 30px;
}
.filter-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.filter-actions .reset-btn,
.filter-actions .apply-btn {
  background-color: #c8201b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin: 0 3px;
}

.filter-actions .apply-btn {
  background-color: #285855;
}

.filter-actions .apply-btn:hover,
.filter-actions .reset-btn:hover {
  opacity: 0.9;
}

.filter-actions .reset-btn:hover {
  background-color: #c9302c;
}

.filter-actions .apply-btn:hover {
  background-color: #466b65;
}


.expenses-tab .dropdown {
    position: relative;
    display: inline-block;
}

.expenses-tab .dropdown-btn {
    background-color: #fff;
    border: none;
    color: #0f534d;
    padding: 5px;
    font-size: 14px;
    cursor: pointer;
}

.expenses-tab .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
}

.expenses-tab .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.expenses-tab .dropdown-content a:hover {
    background-color: #ddd;
}

.expenses-tab .show {
    display: block;
}

.expenses-tab table tbody td:nth-child(4),
.expenses-tab table tbody td:nth-child(1) {
  color: #285855;
}

.expenses-tab table tbody td:last-child{
      color: #ae3737;
}


.financial-dashboard .filters .filters-holder {
  display: flex;
      gap: 15px;
}

.mobile-filters-header {
  display: none;
}
.download-btn:hover::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    opacity: 1;
    z-index: 9;
}




/*media query start*/
@media (max-width: 1199.98px){
  .brk-account-mobile-nav {
    border: 1px solid #9e9e9e;
    border-radius: 8px;
    overflow: hidden;
    margin: 0.8rem;
  }
  .brk-account-mobile-nav .select2-container {
    margin-bottom: 0;
  }
    .brk-is-account-bar {
        padding-left: 75px;
    }
    .brk-account-bar {
      width: auto;
      top: 0;
    }
    .brk-account-nav a {
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brk-account-nav a i {
        margin-right: 0;
    }
    .brk-account-nav a span,
    .sidebar-search-area {
      display: none;
    }
    .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--notification-settings {
      padding-top: 25px;
  }
.financial-dashboard .filters .filters-holder .form-field:first-child,
.financial-dashboard .filters .filters-holder .form-field {
    flex-basis: 20%;
}

.financial-dashboard .filters .filters-holder .form-field:first-child {
    flex: unset;
     max-width: 100%; 
}
body .select2-container {
  width: 100% !important;
}
.pagination-control .select2-container {
  min-width: auto;
  width: auto !important;
}

}
@media (max-width: 999px) {
  .calendar-container .filters,
  .calendar-container .filters .select-holder,
  .calendar-container .view-tabs {
        width: 100%;
  }
  .calendar-container .filters .select-holder {
    flex-wrap: wrap;
  }
  .calendar-container .view-tabs span {
        flex: 1;
  }
  body .select2-container {
  margin-right: 0;
  margin-bottom: 0.5rem;
  }
.calendar-container .calendar-table #multi tr>th:first-child, .calendar-container .calendar-table #multi tr>td:first-child{
    min-width: 120px;
}
      .occupancy-tab .filters {
        flex-direction: column;
        align-items: flex-start;
    }

   /* .occupancy-tab .pagination {
        flex-direction: column;
        align-items: flex-start;
    }*/
    .brk-is-account-bar {
        padding-left: 80px;
    }
    .brk-account-bar {
      width: auto;
    }
    .brk-account-nav a span,
    .sidebar-search-area {
      display: none;
    }
    .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--notification-settings {
      padding-top: 25px;
  }
    .yearly-calendar {
        grid-template-columns: repeat(2, 1fr);
    }
    .monthly-calendar .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

  .calendar-container .calendar-header, .calendar-container .filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .calendar-container #yearly .calendar-header{
    flex-direction: row;
  }
  .calendar-container .view-tabs {
    margin-bottom: 15px;
  }

  .calendar-container .calendar-table table {
    display: block;
    overflow-x: auto;
  }

  .calendar-container .calendar-table th, .calendar-container .calendar-table td {
    padding: 8px;
  }

  .calendar-container .calendar-table .filters select, .calendar-container .calendar-table .filters input {
    width: 100%;
  }
  .top-stats, .main-stats, .units-list, .top-stats .stat-card {
    flex-direction: column;
  }

  .stat-card, .top-stats .financial-stat, .rental_revenue, .col, .unit-card {
    width: 100%;
  }

  .top-stats .financial-stat {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .rental_revenue {
    margin-bottom: 1.25rem;
  }

  .col-wrapper .col:last-child {
    flex-basis: 100%;
  }


  .unit-wrapper .unit-card {
    max-width: 100%;
    width: 100%;
  }
  .videos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .financial-dashboard .filters .filters-holder .form-field:first-child,
.financial-dashboard .filters .filters-holder .form-field {
    flex-basis: 47%;
}
.financial-dashboard .filters .reset-button {
  width: 100%;
  max-width: 320px;
  margin: auto;
}
.summary-cards {
    gap: 10px;
    flex-wrap: wrap;
}
.summary-cards .card {
  flex: unset;
  flex-basis: 48%;
  padding: 0;
  text-align: left;

}
.summary-cards .card .card-header-icon {
    justify-content: flex-start;

}
.download-btn {
  min-width: auto;
  position: relative;
}
.download-btn .btn-text {
        display: none;
    }

.financial-dashboard .filters {
  flex-direction: column;
  margin-bottom: 1rem;
}
.financial-dashboard .filters .filters-holder .form-field input, .financial-dashboard .filters .filters-holder .form-field select,
.financial-dashboard .filters .filters-holder {
  width: 100%;
}
.financial-dashboard .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.chart-container.span-8,
.chart-container.span-4 {
    grid-column: span 12;
}
.financial-dashboard .filters.footer-filter .filters-holder {
    align-items: flex-start;
            flex-direction: column;
}
.financial-dashboard .filters .filters-holder .form-field:first-child,
.financial-dashboard .filters .filters-holder .form-field {
            flex: none;
    width: 100%;
    }
    .financial-dashboard .filters .filters-holder .form-field h6{
          font-size: 1.8rem;
    }
    .filter-tabs-area {
      display: block;
    }
    .app-tabs .tabs {
          height: auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    }
    .app-tabs .tabcontent {
      border: 0;
    }
    .filters .filter-dropdown {
      min-width: auto;
      width: 100%;
      max-width: 500px;
    }
    .financial-dashboard #expenses .filters .filters-holder .form-field:first-child {
    max-width: 100%;
}
.app-res .filters .select2-container {
  margin-right: 1rem;
}

}

@media (max-width: 768px) {
      .occupancy-tab .filter-options {
    display: block;
}
.occupancy-tab .filter-options .status-filter, .occupancy-tab .filter-options .range-month {
  display: flex;
    font-size: 13px;
    margin: 0.5rem 0;
}
.occupancy-tab .filter-options button { 
    flex: 1;
}
  .financial-dashboard .stat-box h2 {
    font-size: 1.2rem;
}
  .financial-dashboard .stats {
    grid-template-columns: repeat(2, 1fr);
}
  .financial-dashboard .tab-btn.active {
    border-bottom: 2px solid #285855;
    background-color: #285855;
    color: #fff;
}
  .financial-dashboard .tab-btn,
  .download-section {
    width: 100%;
  }

    .monthly-calendar .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .monthly-calendar .calendar-header h2 {
        font-size: 20px;
    }
       .yearly-calendar {
        grid-template-columns: 1fr;
    }

  .videos-grid {
    grid-template-columns: 1fr;
  }
  .listing-wrapper .unit-wrapper .unit-card {
    flex-direction: column;
}
.listing-wrapper .unit-wrapper .unit-card .unit-img-holder {
    margin-right: 0;
    margin-bottom: 15px;
    max-width: 100%;
}

.listing-wrapper .unit-wrapper .unit-card .unit-info {
    width: 100%;
}

.unit-wrapper .unit-card .features span {
    font-size: 12px;
}
.unit-wrapper .unit-card .btn-theme-app {
  width: 100%;
  text-align: center;
}
.financial-dashboard .filters .filters-holder {
    gap: 15px;
}
.statement-header {
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.summary-cards .card h2 {
    font-size: 14px;
}

.summary-cards .card p {
    font-size: 16px;
}
.app-table thead th {
    white-space: nowrap;
}
.rental-activity table thead th {
    min-width: 100px;
}
.app-table,
.rental-activity {
  overflow-y: scroll;
  margin-bottom: 1rem;
}

}



/*overright css*/

/*.brk-account-heading {
    margin: 2.5rem 0 0;
}*/