.modal {
  z-index: 1050;
}

.modal-backdrop {
  z-index: 1040;
}

* {
  box-sizing: border-box;
}

body {
  /* background-color: #f1f1f1; */
  padding: 20px;
  font-family: Arial;
}
.clock {
  background: #ececec;
  margin-right: 2rem !important;
  margin-left: 1rem !important;
  width: 248px; /* Increased from 165px */
  height: 246px; /* Increased from 164px */
  margin: 0% auto 0;
  border-radius: 50%;
  border: 10px solid #333; /* Increased from 7px */
  position: relative;
  box-shadow: 0 1vw 2vw -0.5vw rgba(0, 0, 0, 0.8);
}

.dot {
  width: 10px; /* Increased from 7px */
  height: 10px; /* Increased from 7px */
  border-radius: 50%;
  background: #ccc;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  z-index: 10;
  box-shadow: 0 1px 2px -0.5px black;
}

.hour-hand {
  position: absolute;
  z-index: 5;
  width: 3px; /* Increased from 2px */
  height: 50px; /* Increased from 32.5px */
  background: #333;
  top: 60px; /* Increased from 39.5px */
  transform-origin: 50% 55px; /* Adjusted for new size */
  left: 50%;
  margin-left: -1.5px; /* Adjusted for new size */
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.minute-hand {
  position: absolute;
  z-index: 6;
  width: 3px; /* Increased from 2px */
  height: 75px; /* Increased from 50px */
  background: #666;
  top: 35px; /* Increased from 23px */
  left: 50%;
  margin-left: -1.5px; /* Adjusted for new size */
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform-origin: 50% 77.5px; /* Adjusted for new size */
}

.second-hand {
  position: absolute;
  z-index: 7;
  width: 2px; /* Increased from 1px */
  height: 90px; /* Increased from 60px */
  background: gold;
  top: 20px; /* Increased from 13px */
  left: 50%;
  margin-left: -1px; /* Adjusted for new size */
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform-origin: 50% 95px; /* Adjusted for new size */
}

.spann {
  display: inline-block;
  position: absolute;
  color: #333;
  font-size: 16px; /* Increased from 11px */
  font-family: "Poiret One";
  font-weight: 700;
  z-index: 4;
}

.h12 {
  top: 22.5px; /* Increased from 15px */
  left: 50%;
  margin-left: -4.5px; /* Adjusted for new size */
}
.h3 {
  top: 105px; /* Increased from 70px */
  right: 22px; /* Increased from 15px */
}
h3,
.h3 {
  font-size: 20px; /* Increased from 15px */
}
.h12,
.h3,
.h6,
.h9 {
  font-size: 20px; /* Increased from 15px */
}
.h6 {
  bottom: 22.5px; /* Increased from 15px */
  left: 50%;
  margin-left: -2.5px; /* Adjusted for new size */
}
.h9 {
  left: 24px; /* Increased from 16px */
  top: 105px; /* Increased from 70px */
}

.diallines {
  position: absolute;
  z-index: 2;
  width: 1.5px; /* Increased from 1px */
  height: 12px; /* Increased from 7.5px */
  background: #666;
  left: 50%;
  margin-left: -0.5px; /* Adjusted for new size */
  transform-origin: 50% 115px; /* Adjusted for new size */
}
.diallines:nth-of-type(5n) {
  position: absolute;
  z-index: 2;
  width: 3px; /* Increased from 2px */
  height: 18.75px; /* Increased from 12.5px */
  background: #666;
  left: 50%;
  margin-left: -1px; /* Adjusted for new size */
  transform-origin: 50% 113px; /* Adjusted for new size */
}

.info {
  position: absolute;
  width: 90px; /* Increased from 60px */
  height: 15px; /* Increased from 10px */
  border-radius: 7px;
  background: #ccc;
  text-align: center;
  line-height: 15px; /* Adjusted */
  color: #000;
  font-size: 9px; /* Reduced from 11px */
  top: 150px; /* Increased from 100px */
  left: 50%;
  margin-left: -45px; /* Adjusted for new size */
  font-family: "Poiret One";
  font-weight: 700;
  z-index: 3;
  letter-spacing: 2px;
}

.date {
  top: 60px; /* Increased from 40px */
}

.day {
  top: 150px; /* Increased from 100px */
}

/* Center website */
.main {
  /* max-width: 1000px; */
  margin: auto;
}
/* .mm{
  max-width: 1000px;
  margin-left: 264px;
} */
.imgh {
  height: 3rem;
}

h1 {
  word-break: break-all;
  font-size: 60px;
  line-height: 50px;
  font-weight: 900;
}

.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none;
  /* Hide columns by default */
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
  /* margin-left: 1rem; */
}

/* Style the buttons */
/* .btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
} */

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #666;
  color: white;
}
/* .adv-filter .sidebar--static {
    width: 320px;
    flex-grow: 0;
} */
/*
.sidebar--loaded {
    opacity: 1;
}*/

/* .sidebar--static { */
  /* flex-shrink: 0;
    flex-grow: 1; */
  /* width: 14%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 10px;
  margin-right: 2px;
  height: auto;
} */
.sidebar--static {
  width: 10%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 10px;
  margin-right: 2px;
  height: auto;}
.branchesNames {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 10px;
  margin-right: 2px;
  height: 573px;
}
.max-width-100\% {
  max-width: 100%;
}
.width-100\% {
  width: 100%;
}
.padding-left {
  padding-left: var(--space-xl);
}
.flex-grow {
  /* flex-grow: 1; */
  width: 80%;
}

.modal-80 {
  width: 95%;
  max-width: 95%;
  height: auto;
}
.modal-content {
  height: auto;
  display: flex;
  flex-direction: column;
}
input[type="checkbox"] {
  zoom: 1.5;
}
.nice-select:after {
  content: none !important;
}
.nice-select {
  align-items: center;
  display: flex !important;
}
.form-select .current {
  margin-right: 0px !important;
}
.table-containerr {
  overflow-y: auto;
  max-height: 387px;
  width: 98%;
  flex: 1;
}
#tagContainer, #Selection-Container {
  display: none;
}
/* .form-select {
  max-height: 200px;
  overflow-y: auto; 
} */

/* Optional: Add padding to the options for better appearance */
.form-select option {
  padding: 5px;
}
.mh-515 {
  max-height: 515px !important ;
}
/* .btn-stylee {
  width: 106%;
  font-size: x-large;
} */
.btn-stylee {
  height: 40px;
  width: 80%;
  font-size: 16px;
}
.btn-style {
  /* background-color: #0b5ed7; */
  background-color: #0b5ed7c2;
  color: white;
  transition: background-color 0.3s, border-color 0.3s;
  border-color: white;
  margin-right: 0px;
}
.contentt{
  display: block;
  width: -webkit-fill-available;
}
.fa-solid, .fas {
  font-size: large;
  vertical-align: text-top;
}
/* Default button styling */
/* .btn-style {
  background-color: #484b4e9e;
  color: white;
  transition: background-color 0.3s, border-color 0.3s;
  border-color: white;
} */
/* #clear-filters-popup{
  font-size: 24px;
} */
#clear-filters-popup {
  margin-left: 8px;
}
.btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
  font-size: 1.2rem;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: unset;
}
.fs-5 {
  font-size: 1.8rem !important;
}

.btn-style:hover,
.btn-style:focus,
.btn-style:active {
  background-color: rgb(
    60,
    107,
    207
  ); /* Slightly darker purple on hover/select */
  /*border-color: #b380ff;  Darker border color on hover/select */
  outline: none; /* Remove default outline on focus */
}
.table-containerr table th:first-child,
.table-containerr table td:first-child {
  width: 40px; /* Width for the checkbox column */
  text-align: center;
}

.table-containerr table th:nth-child(2),
.table-containerr table td:nth-child(2) {
  width: 60px; /* Width for the SNo column */
  text-align: center;
}

.table-containerr table th,
.table-containerr table td {
  white-space: nowrap; /* Prevents text from wrapping to multiple lines */
}

.table-containerr table th {
  font-weight: bold;
}
/* .selected-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.selected-tags .tag {
  background-color: #e0e0e0;
  border-radius: 5px;
  padding: 2px 8px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.selected-tags .tag .remove-tag {
  margin-left: 5px;
  cursor: pointer;
  color: #ff0000;
  font-weight: bold;
} */
.filter-group {
  padding: 10px;
  flex: 1;
}
.select2-container--default .select2-selection--multiple {
  width: 215.062px;
}
.select2-container {
  width: auto !important;
}

.main {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
}
.carousel-item {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.carousel-item img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.carousel-inner {
  border-radius: 15px;
}
.cardss {
  border-radius: 15px;
  margin: 2px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(200px, 1fr)
  ); /* Responsive grid */
  gap: 10px; /* Space between cards */

  border-radius: 15px;
}
.image-container {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(200px, 1fr)
  ); /* Responsive grid with min 200px width */
  gap: 10px; /* Space between cards */
  align-items: end; /* Stick cards to the bottom of the row */
  /* cursor: pointer; */
}

.cardss {
  border: none !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Ensure image and description align at the bottom of the card */
  /* height: auto; Card height adapts to content */
  /* height: 200px; 
  width: 200px;  */
  padding: 10px;
  background-color: #fffff9;
}
/* .cardss {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
  align-items: center; 
  height: 300px; 
  width: 200px; 
  border: 1px solid #ccc; 
  padding: 10px;
  box-sizing: border-box; 
} */
/* .card-img-top {
  max-height: 70%; 
  width: 100%; 
  object-fit: cover; 
  flex-shrink: 0; 
} */

.card-img-top {
  width: 100%;
  max-height: 70%;
  object-fit: cover; /* Ensure the image fits within the card */
  margin-top: auto; /* Pushes the image up when there's more content */
  cursor: pointer;
}

.card-text {
  text-align: left !important;
  margin-top: 5px;
}
/*.main {
   justify-content: center; 
  flex-wrap: wrap;
}*/

.sidebar {
  max-height: 475px;
  width: 276px; /* Fixed width */
  overflow: auto;
  background-color: #f8f9fa;
  padding: 10px;
  /* flex: 0 0 25%; max-height: 450px; */
  box-sizing: border-box; /* Ensures padding is included in the width */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 10px 10px 15px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  margin-right: 10px;
}

.image-container {
  /* display: flex;
  flex-wrap: wrap; */
  /*gap: 2px;*/ /* Optional: Adds space between cards */
  flex: 1 1;
  max-height: 2347px;
  overflow: auto;
  max-width: 1845px;
  /* justify-content: center; */
}
/* Ensure the image container keeps its dimensions */
/* .image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; 
} */

/* Ensure modal doesn't affect the image container */
.modal-open .image-container img {
  max-width: inherit;
  max-height: inherit;
}

/* .card {
  flex: 0 1 calc(25% - 10px);  Adjust width based on sidebar's space 
  margin-bottom: 10px;  Space between rows 
} */
/* .card {
  flex: 1 1 calc(25% - 10px); /* Adjust percentage to control number of images per row 
  box-sizing: border-box;
}

.card-img-top {
  width: 100%;
  height: auto; /* Adjusts image height to maintain aspect ratio 
  display: block;
} 
*/
.cardf {
  flex-direction: row;
  background-color: #f0f0f0;
  border: none !important;
  margin-bottom: 17px;
}
.btn {
  transition: background-color 0.3s, box-shadow 0.1s, transform 0.1s;
  font-weight: bold;
}
.btnss {
  transition: background-color 0.3s, box-shadow 0.1s, transform 0.1s;
  font-weight: bold;
  background-color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.btnss {
  text-align: left;
}
/* .btnss:hover {
  color:#929594;

} */
.btn:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add a shadow on hover */
}
.cardss {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
.cardss:hover {
  background-color: rgba(0, 0, 0, 0.2); /* Add a background-color on hover */
}

.btn:active,
.btn.pressed {
  background-color: #434b53;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
  color: #ffffff;
}
.btnss:active,
.btnss.pressed {
  /* background-color: #929594 !important; */
  background-color: #0b5ed78f  !important;
  transform: translateY(2px);
}
.btnss:focus {
  color: #929594;

  transform: translateY(2px);
}
.btn:focus {
  background-color: #434b53;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
  color: #ffffff;
}
.views-list {
  /* list-style: disc; */
  font-size: x-large;
  padding-left: 10px;
}

.btnn {
  width: 25%;
  background-color: #80808052;
  border-radius: 15px;
  margin-right: 15px;
}
/* .btnn {
  background: linear-gradient(to bottom, #d3d3d3, #696969); 
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius:25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btnn:hover {
  background: linear-gradient(to bottom, #b0b0b0, #505050); 
}

.btnn.active {
  background: linear-gradient(to bottom, #a9a9a9, #4f4f4f); 
} */
 
.accordion {
  --bs-accordion-btn-padding-y: 0.5rem;
  --bs-accordion-btn-active-icon: url(../../../../../../Pictures/download.png);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
}
.accordion-button.active::after {
  content: "";

  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 20px; /* Adjust size as needed */
  height: 20px; /* Adjust size as needed */
}
.accordion-button {
  font-size: 1.3rem;
  /* font-size: 23px; */
  font-weight: bold;
  /* font-family: "Playfair Display", serif; */
}
/* .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #9134f424;
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
} */
.accordion-button:not(.collapsed) {
  color: #ffffff;
  /* background-color: #434b53; */
  background-color: #0b5ed7c2;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}
/* Eye icon styles */
.view-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 50%;
}
.download-icon {
  position: absolute;
  float: left;
  top: 60px;
  right: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 50%;
}

/* Modal styles */
#imageModal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.lazy {
  background: #f0f0f0; /* Placeholder color */
  min-height: 200px; /* Adjust based on your image dimensions */
  width: 100%; /* Adjust based on your layout */
  display: block; /* Block-level for proper spacing */
}
/* .lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in;
} */

/* img:not(.lazy) {
  opacity: 1;
} */

/* #modalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

#modalContent img {
  max-width: 90vw;
  max-height: 70vh;
}

#closeModal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: rgb(0, 0, 0);
  cursor: pointer;
}
.icon-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.view-icon,
.download-icon {
  cursor: pointer;
  margin: 0 10px;
  font-size: 1.5rem;
  color: #d4d4d4; /* Icon color */
}

.view-icon:hover,
.download-icon:hover {
  color: #007bff; /* Change color on hover */
}
.card .card-text {
  text-align: center;
  /* Adjust visibility for small sizes */
  display: block; /* Ensure text is always visible */
}

/* Optional: Hide description for small sizes */
@media (max-width: 600px) {
  /* Adjust media query based on your needs */
  .card .card-text {
    display: none; /* Hide description for small viewports */
  }
}
.butt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: fit-content;
  padding-left: 0px;
}

/* .carousel-inner {
  display: flex;
  perspective: 1000px; 
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-3d-item {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: rotateY(0deg) translateZ(0px);
  border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3),
                10px 10px 15px rgba(0, 0, 0, 0.2); 
}

.carousel-item.active .carousel-3d-item {
  transform: rotateY(0deg) translateZ(100px); 
}

.carousel-item-next .carousel-3d-item {
  transform: rotateY(-20deg) translateZ(50px);
}

.carousel-item-prev .carousel-3d-item {
  transform: rotateY(20deg) translateZ(50px); 
} */
#carouselExampleAutoplaying {
  width: 120%; /* Increase the carousel width as needed */
  max-width: 1600px; /* Adjust to your preference for maximum width */
  margin: 0 auto;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 10px 10px 15px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.carousel-inner {
  width: 100%; /* Ensure inner carousel elements take full width */
}

.carousel-inner img {
  width: 100%; /* Make the images take up the full width of the carousel */
  height: 310px; /* Set a fixed height for the images */
  object-fit: cover; /* Ensure images fill the space without distortion */
  border-radius: 15px;
}
.settings-container {
  position: relative;
  display: inline-block;
}
.menu-div {
  float: inline-end;
}

.settings-icon {
  float: right;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 5px;
}

.menu {
  display: none;
  position: absolute;
  top: 24px;

  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 120px;
  z-index: 10;
}

.menu.show {
  display: block;
}

.menu-item {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-item i {
  margin-right: 8px;
}

.menu-item:hover {
  background-color: #f0f0f0;
}
#imageDescription {
  margin-top: 1rem;
  font-size: xx-large;
  background-color: white;
  color: black;
  padding: 1rem;
}

/* .tagContainer {
  margin: 10px;
  padding: 5px;
} */

.image-container {
  position: relative;
}

.day-image {
  max-width: 10rem;
  vertical-align: middle;
  border-style: none;
}
.sticky-date-tag {
  position: sticky;
  top: 0;
  border-bottom: 1px solid #ddd;
  z-index: 10;
  color: white;
  text-align: center;
  /* border: solid black;
  border-width: 1px 1px 0px 1px; */
  /* padding: 7px; */
  font-size: 28px;
  font-weight: bold;
  align-content: center;
  height: 50px;
  width: max-content;
  border-radius: 0px;
  gap: 6px;
  /* background-color: #53434b; */
  display: flex;
}
.branch-name {
  /* background-color: #53434b; */
  /* background-color: #53434bba; */
  background-color: #0b5ed7c2;
  height: 50px;
  padding: 0px 10px 0px 10px;
  width: max-content;
  place-content: center;
}
.event-date{
  /* background-color: #53434b; */
  /* background-color: #53434bba; */
  background-color: #0b5ed7c2;
  height: 50px;
  place-content: center;
  width: 289px;
}


.image-Container-For-days{
  overflow: hidden;
}

.image-Container-For-days-After-Tag{
  overflow: overlay;
  height: 700px;
  border: 2px solid black;
  display: flex;
  gap: 10px;
  padding: 5px;
}

.day-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.month-container {
  max-width: 100%;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.month-image-container {
  width: 100%;
  height: 425px;
}

.week-container {
  display: flex;
  flex-direction: row;
  border: 2px solid black;
  padding: 15px;
      /* justify-content: space-evenly; */
  gap: 90px;
  border-radius: 0px;
  padding-left: 28px;

}
.week{
  font-size: 20px;
  font-weight: bold;
  margin-left: 4px;
  color: black;
}

.month-tag {
  color: white;
  text-align: center;
  border: solid black;
  border-width: 1px 1px 0px 1px;
  padding: 7px;
  font-size: 28px;
  font-weight: bold;
  justify-content: center;
  height: 50px;
  width: max-content;
  padding: 0px 20px 0px 20px;
  border-radius: 0px;
  background-color: #53434bba;
}
.month-tag-container{
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: max-content;
}

.tagContainer {
  flex-direction: row;
  flex-wrap: wrap;
  /* top: 0; */
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px;
  /* z-index: 1; */
  align-content: center;
  border-bottom: 1px solid #ddd;
  border-width: 1px 1px 1px 1px;
}

/* .tag {
  display: inline-block;
  background-color: #f0f0f0;
  border: 2px solid #000000;
  border-radius: 25px;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: medium;
  font-weight: bold;
  color: black;
} */
.tag {
  display: inline-block;
  background-color: white;
  border: 1px solid #00000036;
  border-radius: 25px;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: medium;
  font-weight: bold;
  color: black;
  padding-left: 20px;
  padding-top: 7px;
}
.tagsss{
padding-right: 20px;
}
.crosstag{
  padding-left: 10px;
  padding-right: 10px;
  color: red;
  background-color: #f0f0f0;

}
.crosstag:hover,
.crosstag:focus{
  color: rgb(124, 0, 0);
  color: rgb(124, 0, 0);
}
.crosstags{
  font-size: xx-large;
}

.flex-column {
  flex-direction: column;
}
.day-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; /* Adds space between days */
  width: 100%; /* Ensures the day container takes full width */
  height: fit-content;
  clear: both; /* Ensures a new row starts for each day */
}

.day-container .card {
  /*flex: 1 0 30%;  Adjusts card width, will wrap to the next line if it exceeds container width */
  margin: 10px;
  /* max-width: 30%;  Maximum width of each card */
  box-sizing: border-box;
}
.monthcontainer{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; /* Adds space between days */
  width: 100%; /* Ensures the day container takes full width */
  clear: both; /* Ensures a new row starts for each day */
}
.monthcontainer .card {
  /*flex: 1 0 30%;  Adjusts card width, will wrap to the next line if it exceeds container width */
  margin: 10px;
  
  /* max-width: 30%;  Maximum width of each card */
  box-sizing: border-box;
}
.yearcontainer{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; /* Adds space between days */
  width: 100%; /* Ensures the day container takes full width */
  clear: both; /* Ensures a new row starts for each day */
}
.yearcontainer .card {
  /*flex: 1 0 30%;  Adjusts card width, will wrap to the next line if it exceeds container width */
  margin: 10px;
  
  /* max-width: 30%;  Maximum width of each card */
  box-sizing: border-box;
}
.selectionn{
  /* color: white; */
  color: black;
  font-size: 23px;
  font-weight: bold;
  padding: 0px 10px 0px 10px;
}
.Selection-Div {
  width: 140px;
  padding-top: 8px !important;
  padding: 5px;
  /* background-color: #53434bba; */
  align-content: center;
  /* color: white; */
  margin-right: 3px;
  border-radius: 7px;
}

/* Modal container */
.modal {
  display: none;
  position: fixed;
  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
  justify-content: center;
  align-items: center;
  overflow: auto;
}

/* Modal content box */
.modal-contentt {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 61%;
  max-height: 90%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  left: 20%;
  position: absolute;
  animation: modalFadeIn 0.5s ease; /* Animation effect */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #000000;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Modal image styling */
.enlarged-img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  transition: transform 0.3s ease; /* Zoom effect */
}

.enlarged-img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Modal description styling */
.image-description {
  font-size: 16px;
  color: #444;
  text-align: center;
  margin-top: 10px;
}

/* Image date styling */
.image-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 0px;
  text-align: center;
}

/* Animation for modal */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.imagee{
  text-align-last: center;
}
.btnss i {
  margin-right: 8px;
  font-size: 1.2em;
}

.views-list .btnss {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  /* background-color: #f0f0f0; */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.views-list .btnss:hover {
  background-color: #d0d0d0;
}


.btnss {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btnss:hover {
  background-color: #d0d0d0;
}
.bt{
  padding-left: 14px;
}
/* .cross-btn {
  background: none;
  border: none;
  font-size: 25px;
  color: red;
  cursor: pointer;
  margin-left: 5px;
  vertical-align: sub;
} */
.cross-btn {
  background: none;
  border: none;
  font-size: 25px;
  color: #b3acac;
  cursor: pointer;
  margin-left: 5px;
  vertical-align: sub;
}

.cross-btn:hover {
  color: darkred;
}
.clear-all-btn {
  font-size: 27px;
  color: red;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 15px;
}

.clear-all-btn:hover {
  color: darkred;
}
.btnss {
  margin-left: 10px; /* Adjust spacing if needed */
}
/* 
#clear-filters-btn {
   Custom styling for the cross button 
} */
/* .btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
  font-size: 1.5rem;
  line-height: inherit;
} */

.modal-footer {
  padding-right: 0px;
}
