@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  color: #090D17;
  width: 100%;
  overflow-x: hidden;
}

main {
  overflow: hidden;
  width: 100%;
}

a {
  color: #0D4357 !important;
  text-decoration: none;
}

.bg-gray {
  background-color: #F8F8F8;
}

.header {
  height: 110px;
  background-image: url("../images/Rectangle 2.png");
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 3px 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0 20px 0 30px;
}
.header .logo .logo_image {
  height: 70px;
}
.header .main-menu .menu {
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: 100px;
}
.header .main-menu .menu .menu-item {
  list-style: none;
  padding-left: 20px;
}
.header .main-menu .menu .menu-item:hover > ::after {
  width: 100%;
}
.header .main-menu .menu .menu-item:hover > a {
  color: #00BCF2 !important;
}
.header .main-menu .menu .menu-item:hover .dropdown-menu-item {
  visibility: inherit;
}
.header .main-menu .menu .menu-item a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: initial;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.header .main-menu .menu .menu-item .arrow-down {
  margin-left: 7px;
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s;
}
.header .main-menu .menu .menu-item .dropdown-menu-item {
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
  background-color: #fff;
  margin-top: 20px;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.header .main-menu .menu .menu-item .dropdown-menu-item li {
  list-style: none;
  padding: 8px 20px;
  white-space: nowrap;
  border: none !important;
}
.header .main-menu .menu .menu-item .dropdown-menu-item li a {
  color: #090D17;
  font-weight: 500;
}
.header .main-menu .menu .menu-item .dropdown-menu-item li:hover {
  background-color: #F0F0F0;
}
.header .user-menu {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header .user-menu .bi-person {
  font-size: 1.5rem;
}
.header .user-menu div {
  margin: 0 10px;
}
.header .user-menu .lang {
  background-color: #fff;
  border-radius: 7px;
}
.header .user-menu .lang .lang-dropdown {
  min-width: 2em;
}
.header .user-menu .btn-menu {
  font-size: 1.5em;
}

.connected-systems {
  position: fixed;
  left: 0;
  z-index: 100000;
  top: 80%;
  transform: translateY(-50%) translateX(-150px);
  background-color: #3E4350;
  padding: 20px 40px 20px 15px;
  border-radius: 0 11px 11px 0;
  width: 190px;
  transition: all 0.3s;
}
.connected-systems:hover {
  transform: translateY(-50%) translateX(0);
}
.connected-systems .con-sys-title {
  font-size: 1rem;
  font-weight: 600;
  transform: rotate(-90deg);
  top: 45%;
  right: -58px;
  position: absolute;
  color: #fff;
  margin-bottom: 20px;
}
.connected-systems img {
  width: 100px;
}
.connected-systems .system {
  background-color: #fff;
  border-radius: 5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.connected-systems .system:last-child {
  margin: 0;
}

.slider {
  background-color: #667A88;
  width: 100%;
  height: 50vh;
  background-position: center;
  background-image: url("../images/bg.png");
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.slider h1 {
  font-weight: 600;
  font-size: 3em;
}
.slider .short-dect {
  width: 50%;
  margin-top: 30px;
}

.search-bar {
  box-sizing: border-box;
  font-size: 0;
  width: 50%;
  margin-top: 40px;
}
.search-bar .search-input {
  padding: 17px 27px;
  width: 80%;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
  border: 0;
  outline: none;
}
.search-bar .search-btn {
  padding: 17px 27px;
  width: 20%;
  font-size: 1rem;
  box-sizing: border-box;
  border: 0;
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-weight: 700;
  background-color: #00BCF2;
}

.contact-info {
  margin-top: 10px;
}
.contact-info .row {
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 0 100px;
  font-weight: 600;
  min-height: 100px;
  display: flex;
  justify-content: space-between;
}

.main-title {
  font-weight: 700;
  text-align: center;
  position: relative;
  font-size: 2.2rem;
  margin-top: 50px;
  margin-bottom: 70px;
}
.main-title .title-text {
  background-color: #fff;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}
.main-title::after {
  content: "";
  width: 100%;
  z-index: -10;
  display: block;
  border-top: 1px solid #C0C2C4;
  height: 5px;
  border-bottom: 1px solid #C0C2C4;
  position: absolute;
  bottom: 10px;
}

.secondary-title {
  font-weight: 700;
  text-align: left;
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 60px;
}
.secondary-title .title-text {
  background-color: inherit;
  padding: 0 40px;
  display: inline-block;
  position: relative;
  z-index: 10;
}
.secondary-title::after {
  content: "";
  width: 100%;
  z-index: 0;
  display: block;
  border-top: 1px solid #C0C2C4;
  height: 5px;
  border-bottom: 1px solid #C0C2C4;
  position: absolute;
  bottom: 10px;
}

.content-title {
  margin-top: 20px;
  background-color: #4b6770;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.view-btn {
  background-color: #0985A8;
  color: #fff !important;
  border: none;
  outline: none;
  transition: all 0.3s;
}
.view-btn:hover {
  background-color: #036d8a;
}

.current-edition {
  margin: 70px 0;
}
.current-edition #cloud-container {
  width: 100%;
  height: 400px;
  position: relative;
}
.current-edition {
  /* Styling the individual word "tags" */
}
.current-edition span.word-tag {
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
  line-height: 1;
}
.current-edition {
  /* Hover effect */
}
.current-edition span.word-tag:hover {
  color: #0985A8 !important;
  /* Changes to blue on hover */
  transform: scale(1.1);
}

.edition-face {
  display: flex !important;
}
.edition-face .edition-image {
  width: 270px;
  height: 370px;
  margin-right: 40px;
}
.edition-face .edition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edition-face .editon-text {
  padding: 18px 0;
}
.edition-face .editon-text h3 {
  font-weight: 700;
}

.articles {
  background-color: #F8F8F8;
  padding: 70px 0;
}
.articles .article-item {
  background-color: #fff;
  padding: 15px 25px;
  display: block;
  color: #090D17;
  text-decoration: none;
}
.articles .article-item h5 {
  font-size: 1rem;
  font-weight: 300;
}
.articles .article-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
}
.articles .article-item .article-bottom {
  display: flex;
  align-items: center;
}
.articles .article-item .article-bottom .page,
.articles .article-item .article-bottom .eye {
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.articles .article-item .article-bottom .page .bi,
.articles .article-item .article-bottom .eye .bi {
  font-size: 1.5rem;
  margin-right: 10px;
}

.collection #cloud-container {
  width: 100%;
  min-height: 300px;
  position: relative;
}
.collection span.word-tag {
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
  line-height: 1;
}
.collection span.word-tag:hover {
  color: #0985A8 !important;
  transform: scale(1.1);
}

.connected-systems-main {
  margin-bottom: 50px;
}
.connected-systems-main .system {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: 90px;
  justify-content: center;
  vertical-align: middle;
  line-height: 70px;
  border-radius: 5px;
}
.connected-systems-main .system img {
  width: 100%;
}

.footer {
  background-color: #0D4357;
  color: #f1f1f1;
  padding: 30px 0 0;
}
.footer h2 {
  font-size: 1.2rem;
}
.footer .logo-footer {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}
.footer .logo-footer img {
  width: 100%;
  height: 100%;
}
.footer .contact-info h3 {
  font-size: 1rem;
}
.footer .contact-info div {
  display: flex;
  align-items: center;
  text-align: center;
  vertical-align: middle;
}
.footer .contact-info div a {
  color: #f1f1f1 !important;
}
.footer .contact-info div i {
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 10px;
  color: #f1f1f1;
}
.footer .copyright {
  margin-bottom: 0;
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
  margin-top: 15px;
  padding-bottom: 15px;
}

.collection {
  margin: 0;
}
.collection .articles {
  padding-top: 20px;
  margin-top: 35px;
}
.collection .articles .secondary-title {
  margin: 0 30px 40px 0;
  font-size: 1.8rem;
}
.collection .articles .secondary-title .title-text {
  padding-left: 20px;
}

.archive .contact-info .row {
  min-height: fit-content;
}

.archive-content {
  margin-top: 70px;
  margin-bottom: 30px;
}
.archive-content .article-image {
  width: 220px;
  height: 311px;
}
.archive-content .article-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.archive-content .article-image {
  margin-bottom: 10px;
}
.archive-content .article-link {
  color: #0D4357;
  font-size: 1rem;
}

.content #cloud-container {
  width: 100%;
  height: 200px;
  position: relative;
  cursor: pointer;
}

.input-groups {
  padding-left: 30px;
  margin-bottom: 20px;
}
.input-groups .label {
  font-weight: 500;
}

/* Input box style - white background, light grey border, rounded corners (signup/login) */
.login-container .input,
.input-groups .input {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.login-container .input .icon,
.input-groups .input .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6a70;
  font-size: 1.1rem;
  padding-left: 12px;
  flex-shrink: 0;
}
.login-container .input .toggle-password,
.input-groups .input .toggle-password {
  cursor: pointer;
  padding: 8px 12px 8px 8px;
  color: #5a6a70;
}
.login-container .input .toggle-password:hover,
.input-groups .input .toggle-password:hover {
  color: #2d5a6a;
}
.login-container .input input,
.login-container .input select.form-control,
.input-groups .input input,
.input-groups .input select.form-control {
  border: none;
  outline: none;
  flex-grow: 1;
  padding: 12px 15px 12px 8px;
  font-size: 16px;
  color: #333;
  background: transparent;
  font-weight: 400;
  min-width: 0;
}
.login-container .input input::placeholder,
.login-container .input select.form-control::placeholder,
.input-groups .input input::placeholder,
.input-groups .input select.form-control::placeholder {
  color: #99aab5;
}
.login-container .input select.form-control,
.input-groups .input select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a6a70' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.without-icon input {
  padding-left: 15px;
}

.login-container .input:focus-within,
.input-groups .input:focus-within {
  border-color: #1a3c48;
  box-shadow: 0 0 0 1px #1a3c48;
}

.login-container {
  height: calc(100vh - 110px);
  background-image: url("../images/iStock-1249451586.jpg.webp");
  background-size: cover;
  background-color: #0D4357;
  background-position: center;
}
.login-container .form-box {
  overflow: auto;
  width: 35%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.login-container .form-box .login-text {
  margin-bottom: 0;
}
.login-container .form-box .login-header {
  font-weight: 600;
  font-size: 2rem;
  margin: 20px 0 50px;
}
.login-container .form-box h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.login-container .form-box .form {
  width: 100%;
}
.login-container .custom-select {
  position: relative;
}
.login-container .select-box {
  border: none;
  border-bottom: 2px solid #2d5a6a;
  padding: 5px 30px 5px 5px;
  background: transparent;
  cursor: pointer;
  position: relative;
  color: #99aab5;
}
.login-container .select-box::after {
  content: "\f22c";
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 5px;
  top: 8px;
  font-size: 16px;
  color: #99aab5;
}
.login-container .options {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  z-index: 10;
}
.login-container .option {
  padding: 10px;
  cursor: pointer;
}
.login-container .option:hover {
  background: #f1f1f1;
}
.login-container .checkbox-gr {
  display: flex;
}
.login-container .checkbox-wrapper-19 {
  box-sizing: border-box;
  margin-right: 5px;
}
.login-container .checkbox-wrapper-19 .text-content {
  font-weight: 300;
}
.login-container .checkbox-wrapper-19 input {
  display: none;
}
.login-container .checkbox-wrapper-19 input:checked + .check-box {
  border-color: #0D4357;
}
.login-container .checkbox-wrapper-19 input:checked + .check-box::after {
  height: 12px;
  animation: bottomCheck 0.2s ease forwards;
}
.login-container .checkbox-wrapper-19 input:checked + .check-box::before {
  height: 30px;
  animation: topCheck 0.4s ease forwards;
}
.login-container .checkbox-wrapper-19 .check-box {
  width: 20px;
  height: 20px;
  background-color: #D9D9D9;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
}
.login-container .checkbox-wrapper-19 .check-box::before, .login-container .checkbox-wrapper-19 .check-box::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  background: #0D4357;
  border-radius: 3px;
  transform-origin: left top;
}
.login-container .checkbox-wrapper-19 .check-box::after {
  top: 11px;
  left: 5px;
  transform: rotate(-45deg);
}
.login-container .checkbox-wrapper-19 .check-box::before {
  top: 16px;
  left: 10px;
  transform: rotate(-146deg);
}
@keyframes bottomCheck {
  from {
    height: 0;
  }
  to {
    height: 4px;
  }
}
@keyframes topCheck {
  0%, 50% {
    height: 0;
  }
  100% {
    height: 14px;
  }
}
.login-container .login-btn {
  width: 100%;
  background-color: #0D4357;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  padding: 7px 15px;
}
.login-container .form-link {
  text-align: center;
  margin-top: 15px;
}
.login-container .form-link a {
  color: #0D4357;
  text-decoration: underline;
}

.article-page .author {
  margin-top: 10px;
  border-top: 1px solid #bbdae2;
  border-bottom: 1px solid #bbdae2;
  padding: 10px 20px;
}
.article-page .author a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-style: italic;
  font-weight: 500;
  color: #0985A8 !important;
}
.article-page .author .author-link {
  margin-bottom: 15px;
}
.article-page .author .author-link img {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}
.article-page .author .doi-link > span {
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}
.article-page .full-text {
  display: flex;
  font-weight: 600;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #bbdae2;
  padding: 10px 20px;
}
.article-page .full-text :first-child {
  display: inline-block;
  margin-right: 15px;
}
.article-page .key-words-title {
  padding-bottom: 5px;
  border-bottom: 1px solid #0985A8;
  margin-bottom: 15px;
}
.article-page .quote-info .quote-info-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.article-page .quote-info {
  margin-bottom: 10px;
}
.article-page .key-words .key {
  border: 1px solid #153b46;
  display: inline-block;
  padding: 0px 15px;
  border-radius: 7px;
  color: #090D17 !important;
  text-decoration: none;
}
.article-page .key-words {
  margin-bottom: 25px;
}
.article-page .nav-pills .nav-link {
  color: #0D4357;
  font-weight: 500;
}
.article-page .nav-pills .active {
  background-color: #0985A8 !important;
  color: white;
}
.article-page .tab-pane h3 {
  border-bottom: 2px solid #0D4357;
  margin-top: 10px;
  padding: 10px 0;
  color: #333;
  font-weight: 600;
}
.article-page .tab-pane .tab-content {
  width: 100%;
}
.article-page .tab-pane .tab-content img {
  width: 100%;
}
.article-page .tab-pane .author {
  border-radius: 10px;
  border: 0;
  position: relative;
  border-top: 1px solid rgba(9, 133, 168, 0.4);
  box-shadow: 3px 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding-top: 35px;
}
.article-page .tab-pane .author ::after {
  content: "";
  width: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%);
  left: 50%;
  height: 15px;
  border-radius: 0 0 10px 10px;
  background-color: rgba(9, 133, 168, 0.4);
}
.article-page .tab-pane .author h4 {
  font-weight: 500 !important;
}
.article-page .tab-pane .author p {
  font-style: italic;
  background-color: #f1f5f7;
  padding-left: 15px;
  border-left: 5px solid #939394;
}
.article-page .share1 {
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #bbdae2;
}
.article-page .share1 .share-links {
  display: flex;
  justify-content: space-around;
}
.article-page .share1 .share-links i {
  font-size: 2.5rem;
}
.article-page .share1 .share-links .copy-btn {
  border: none;
  background-color: transparent;
  color: #0D4357;
}

@media screen and (max-width: 1200px) {
  .active {
    left: 10px !important;
  }
  .header .main-menu {
    position: absolute;
    left: 100%;
    transition: all 0.3s;
  }
  .header .main-menu .menu {
    position: absolute;
    top: 50px;
    flex-direction: column;
    background-color: #fff;
    right: 10px;
    padding: 0;
  }
  .header .main-menu .menu .menu-item {
    width: 100%;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #ccc;
  }
  .header .main-menu .menu .menu-item > a {
    padding: 10px 50px;
    display: inline-block;
  }
  .header .main-menu .menu .menu-item .dropdown-menu-item {
    padding: 0;
    height: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 0;
    visibility: inherit;
    box-shadow: none;
  }
  .header .main-menu .menu .menu-item .dropdown-menu-item li {
    padding: 10px 0;
    width: 100%;
  }
  .slider .short-dect {
    margin-top: 20px;
    width: 80%;
  }
  .search-bar .search-input {
    width: 65%;
  }
  .search-bar .search-btn {
    width: 35%;
  }
  .connected-systems {
    background-color: rgba(62, 67, 80, 0.7);
    top: 25%;
  }
  .login-container .form-box {
    padding: 35px 40px;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }
  h1 {
    font-size: 2rem !important;
    width: 80%;
  }
  .secondary-title {
    font-size: 1.8rem;
  }
  .search-bar {
    width: 90%;
  }
  .search-bar .search-input {
    width: 65%;
  }
  .search-bar .search-btn {
    width: 35%;
  }
  .editon-text {
    text-align: center !important;
  }
  .login-container .form-box {
    padding: 35px 20px;
    width: 100%;
  }
  .footer {
    box-sizing: border-box;
  }
  .footer .logo-footer {
    width: 80px;
    height: 65px;
  }
  .connected-systems-main {
    margin-bottom: 50px;
  }
  .connected-systems-main .system img {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .header {
    padding: 0 0 0 15px;
  }
  .contact-info .row {
    padding: 30px;
  }
  .slider .short-dect {
    margin-top: 20px;
    width: 90%;
  }
  .search-bar {
    width: 90%;
  }
  .search-bar .search-input {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .search-bar .search-btn {
    border-radius: 0 0 10px 10px;
    width: 100%;
  }
}
/* --- INPUT BAR COMPONENT (From previous step) --- */
.date-range-picker-container {
  position: relative;
}

.input-bar {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  width: 420px;
  justify-content: space-between;
}

.date-input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  width: 160px;
  text-align: center;
}

.separator {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

/* Target the End Date specifically for the black border look */
#endDateInput {
  border-radius: 4px;
  padding: 2px;
}

/* --- CUSTOM CALENDAR POPUP --- */
.calendar-popup {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 100;
  display: flex;
  /* Flex to show side-by-side if needed */
  gap: 24px;
}

.calendar-popup.hidden {
  display: none;
}

.calendar-section {
  width: 280px;
}

/* Header: Month Year + Arrows */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.month-year {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f7f7f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: #e0e0e0;
}

/* Grid System */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 8px;
}

.weekday {
  text-align: center;
  font-size: 14px;
  color: #828282;
  font-weight: 400;
  margin-bottom: 8px;
}

.day {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  color: #333;
  position: relative;
}

.day:hover:not(.empty):not(.disabled) {
  background-color: #f0f0f0;
}

/* --- SELECTION STATES (The "Image" Look) --- */
/* The specific selected dates (Start/End) - Dark Blue */
.day.selected {
  background-color: #2F80ED;
  color: white;
  font-weight: 600;
}

/* The range in between - Light Blue */
.day.in-range {
  background-color: #E1F0FF;
  color: #333;
  border-radius: 0;
  /* Connect the range visually */
}

/* Fix rounded corners for the edges of the range */
.day.range-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.day.range-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Disabled state */
.day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.day.empty {
  cursor: default;
}
