:root {
  --primary-color: #01875f;
  --secondary-color: #f1f1f1;
  --text-color: #202124;
  --light-text: #5f6368;
  --border-color: #dadce0;
  --background-color: #fff;
  --card-background: #fff;
  --blue-color: rgb(15, 80, 193);
  --gray-text-color: #838181;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', 'Noto Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  padding-bottom: 72px; /* Space for fixed install button */
}

/* Status bar - Android style */
.status-bar {
  background-color: #f8f8f8;
  display: flex;
  justify-content: space-between;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--light-text);
}

.status-bar-left {
  display: flex;
  align-items: center;
}

.status-bar-right {
  display: flex;
  align-items: center;
}

.status-icon {
  margin-left: 6px;
}

/* App bar */
.app-bar {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: var(--background-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.back-button {
  margin-right: 16px;
  font-size: 20px;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.app-bar-title {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
}

.app-bar-actions {
  display: flex;
  align-items: center;
}

.action-button {
  background: none;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  color: var(--text-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

/* Main content */
.main-content {
  max-width: 1340px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 16px;
  color: var(--light-text);
}

/* App header */
.app-header {
  display: flex;
  margin:  44px 0px 20px;
  padding: 12px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 20%;
  margin-right: 24px;
  overflow: hidden;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-info__title {
  display: flex;
  align-items: center;
  margin-top: -5px;
  gap: 6px;
}

.app-title {
  font-family: Google Sans, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color);
}

.app-developer {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 6px;
}

.app-tag {
  display: inline-block;
  color: var(--light-text);
  padding: 2px 0px;
  font-size: 12px;
}

/* Rating section */

.rating-section-wrapper {
  width: 100%;
  margin: 0px 5px 20px;
  overflow-x: auto;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.rating-section {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.rating-section::-webkit-scrollbar {
  display: none;
}

.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  min-width: 48px;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}

.rating-item img {
  margin: 2px 0 6px 0;
}

.rating-lab-block {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-lab {
  font-size: 12px;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  letter-spacing: .025em;
  line-height: 1rem;
  color: var(--light-text);
}

.rating-divider {
  width: 1px;
  height: 24px;
  background-color: #e5e3e3;
  flex-shrink: 0;
}

.rating-value {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  font-family: Google Sans, Roboto, Arial, sans-serif;
  margin-bottom: 5px;
  color: #202124;
}

.rating-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}

.icon {
  width: 12px;
  height: 12px;
  background-color: #202124;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

.icon-reward {
  display: inline-block; 
  mask-image: url('./base/icons/star.svg');
  -webkit-mask-image: url('./base/icons/star.svg');
}

.rating-lab {
  margin-right: 2px;
}

.info-icon {
  display: inline;
  margin-top: 2px;
}


/* Install button fixed at bottom */
.install-container {
  background-color: var(--background-color);
  padding: 12px 10px;
  z-index: 100;
}

.install-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.5px;
}

/* Wishlist */

.wishlist-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 30px;
}

.wishlist-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wishlist-text {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--primary-color);
}

.devices-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  margin-right: auto;
  gap: 10px;
}

.devices-text {
  font-size: 14px;
  color: #5f6368;
}


/* Screenshots */
.screenshots {
  margin-top: 80px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0 8px;
}

.screenshots-container {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 0 8px 12px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.screenshots-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.screenshot {
  flex: 0 0 auto;
  width: 115px;
  height: 204px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About section */
.description-section {
  margin-bottom: 24px;
  padding: 0 8px;
}

.description-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.description-header h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  color: #202124;
}

.description-header img {
  width: 24px;
  height: 26px;
  margin-right: 5px;
  cursor: pointer;
}

.app-description {
  font-size: 14px;
  color: var(--light-text);
  margin: 0 12px 12px 0;
  line-height: 1.5;
  position: relative;
  text-size-adjust: 100%;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  text-overflow: ellipsis;
  text-rendering: optimizeLegibility;
  vertical-align: initial;
}

.app-description.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

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

.description-buttons__item {
  padding: 3px 10px;
  border: 1px solid var(--light-text);
  border-radius: 5px;
  background: white;
}

/* Update section */

.update-section {
  margin-bottom: 24px;
  padding: 0 8px;
}

.update-title {
  font-size: 16px;
  font-weight: 500;
  color: #202124;
}

.update-text {
  font-size: 14px;
  color: #5f6368;
}



/* Safety section */

.safety-section {
  margin-bottom: 24px;
  padding: 0 8px;
}

.safety-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.safety-header h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  color: var(--text-color);
}

.safety-header img {
  width: 24px;
  height: 26px;
  margin-right: 5px;
  cursor: pointer;
}

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

.tag {
  fill: #5f6368;
  align-items: center;
  background: #0000;
  border: 1px solid #dadce0;
  border-radius: 16px;
  box-shadow: none;
  box-sizing: border-box;
  color: #5f6368;
  cursor: default;
  display: inline-flex;
  padding: 2px 15px;
}


.app-description {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
}

.app-description.truncated {
  display: -webkit-box;
  /* -webkit-line-clamp: 4; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Data section */

.data-section {
  margin: 12px;
  margin-bottom: 15px;
  padding: 20px;
  border: 1px solid #cbc9c9;
  border-radius: 10px;
  background: transparent;
}

.data-item {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}

.data-content {
  color: var(--light-text);
  line-height: 1.2;
}

.data-content__title {
  font-size: 14px;
  font-weight: 400;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: var(--light-text);
}

.data-content span {
  font-size: 12px;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  color: var(--light-text);
}

.data-section__link {
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
}

/* Ratings */

.ratings-summary {
  display: flex;
  align-items: center;
  margin-left: 8px;
  margin-bottom: 24px;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}

.rating-stars {
  display: flex;
  margin-bottom: 10px;
}

.star {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

.rating-number {
  font-size: 12px;
  color: var(--light-text);
}

.rating-big {
  font-size: 3.5rem;
  font-weight: 400;
  font-family: Google Sans Display, Roboto, Arial, sans-serif;
  margin-right: 24px;
  letter-spacing: 0;
  line-height: 4rem;
  color: #202124;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  margin-left: -12px;
  flex: 1;
  gap: 2px;
}

.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: -4px;
}

.rating-label {
  width: 24px;
  text-align: right;
  margin-right: 16px;
  font-size: 12px;
  color: var(--light-text);
}

.bar-item {
  flex: 1;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 4px;
  overflow: hidden;
}

.bar-item__fill {
  width: 100%;
  height: 100%;
  background-color: #E8EAED;
  border-radius: 0 20px 20px;
}

.bar-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 0 20px 20px;
}

/* Reviews section */
.reviews-section {
  margin-bottom: 24px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 8px;
}

.reviews-title {
  font-size: 18px;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  color: var(--text-color);
}

.reviews-header img {
  width: 24px;
  height: 26px;
  margin-right: 5px;
  cursor: pointer;
}

.see-all {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}

.review {
  padding: 12px 8px;
}

.review-header {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
}

.review-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.review-avatar img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.review-avatar__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgb(179, 0, 60);; /* Цвет по умолчанию */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.review-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.review-info img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  cursor: pointer;
}

.review-name {
  font-size: 14px;
  font-weight: 400;
  font-family: Roboto, Helvetika, Arial, sans-serif;
  margin-bottom: 2px;
  color: var(--text-color);
}

.review-rating-block {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 8px;
}

.review-date {
  display: inline-block;
  font-size: 12px;
  color: var(--light-text);
}

.review-rating {
  display: flex;
}

.icon-review {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

.review-text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.review-text__count {
  margin-bottom: 14px;
  font-size: 12px;
}

.review-buttons__wrapper {
  max-width: 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-buttons__text {
  font-size: 12px;
}

.review-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.review-buttons__item {
  padding: 2px 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  font-family: Roboto, Arial, sans-serif;
  color: var(--light-text);
  cursor: pointer;
  background-color: #fff;
}

.review-answer__date {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-size: 0.75rem;
}

.review-answer__name {
  display: flex;
  font-size: 0.75rem;
}

.review-answer {
  grid-row-gap: 12px;
  align-items: center;
  background-color: #f8f9fa;
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  margin: 24px 24px 0;
  padding: 12px 16px 16px;
}

.review-answer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-answer__text {
  display: flex;
  color: var(--light-text);
}

.all-reviews-button {
  margin-left: 10px;
}

.all-reviews-button a {
  text-decoration: none;
  color: var(--primary-color);
}

/* News */
.news-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 10px;
}

.news-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
}

.news-text {
  font-size: 14px;
  color: var(--light-text);
}

/* Developer contact */
.developer-contact__block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.developer-contact__block img {
  width: 30px;
  height: 30px;
  padding: 3px;
  cursor: pointer;
}

.developer-contact__title {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-color);
}

.similar-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
}

/* Similar apps */
.similar-apps {
  margin-bottom: 24px;
  margin-top: 24px;
}

.similar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.similar-header img {
  width: 25px;
  height: 28px;
  margin-right: 10px;
  padding: 3px;
  cursor: pointer;
}

.similar-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 0 8px 12px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: pointer;
}

.similar-container::-webkit-scrollbar {
  display: none;
}

.similar-app {
  flex: 0 0 auto;
  width: 100px;
  color: var(--text-color);
  text-decoration: none;
}

.similar-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.similar-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.similar-app-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.similar-app-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--light-text);
}

.similar-app-rating .app-star {
  font-size: 12px;
  margin-right: 4px;
  color: var(--light-text);
}

/* Bottom navigation - Android style */
.bottom-nav {
  display: none; /* Hidden by default, shown with JavaScript */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  border-top: 1px solid var(--border-color);
  padding: 8px 0;
  z-index: 101;
}

.nav-items {
  display: flex;
  justify-content: space-around;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light-text);
  font-size: 12px;
}

.nav-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.nav-item.active {
  color: var(--primary-color);
}

/* Material Design ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: .2;
  transition: 0s;
}

/* JavaScript functionality */
.hidden {
  display: none !important;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    width: 96%;
    max-width: 720px;
    height: 95vh;
    margin: 2vh auto;
    padding: 18px 18px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 6px 0px;
    padding: 0 16px;
    z-index: 1001;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.modal-body {
  margin-top: 20px;
}

.modal-description__text {
  letter-spacing: .0142857em;
  white-space: pre-line;
  color: var(--light-text);
}

.modal-header-content {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    gap: 10px;
    flex: 1;
    height: 100%;
}

.modal-app-icon {
  width: 50px;
  height: 50px;
  margin-right: 8px;
  border-radius: 10px;
}

.modal-back-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.modal-back {
    width: 16px;
    height: 16px;
    font-size: 24px;
    margin-right: 16px;
    color: #5f6368;
    cursor: pointer;
}

.modal-app-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: auto;
    gap: 6px; 
}

.modal-app-title {
    font-size: 22px;
    font-weight: 500;
    font-family: Google Sans, Roboto, Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1.75rem;
    color: #202124;
    vertical-align: initial;
}

.modal-app-info .app-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-app-info .app-title {
    font-size: 16px;
    margin: 0;
    line-height: 1.2;
}

.modal-app-info .developer {
    font-size: 12px;
    margin: 0;
    color: var(--light-text);
}

.modal-app__developer {
    font-size: 14px;
    font-family: Roboto, Arial, sans-serif;
    margin-top: -2px;
    color: var(--light-text);
}

.modal-body {
    padding: 88px 16px 16px;
    height: 100%;
    overflow-y: auto;
}

.close-modal {
    color: var(--text-color);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px;
}

.close-modal:hover {
    opacity: 0.7;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.show {
    display: block;
}

.modal.show .modal-content {
    animation: fadeIn 0.3s ease-out;
}

/* Добавим стили для контента внутри модального окна */
.modal .reviews-section,
.modal .similar-container {
    padding: 0;
    margin: 0;
}

.modal .similar-container {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.modal .similar-app {
    width: calc(50% - 12px);
    margin-bottom: 24px;
}

.modal .rating-section,
.modal .reviews-header,
.modal .similar-header {
    padding: 0;
    margin: 0 0 24px 0;
}

.modal .review {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.modal .review:last-child {
    border-bottom: none;
}

/* Стили для скроллбара в модальном окне */
.modal-body {
    padding: 72px 16px 16px;
    -webkit-overflow-scrolling: touch;
}

/* Убираем лишние элементы в модальном окне */
.modal .reviews-header img,
.modal .similar-header img {
    display: none;
}

/* Стили для data-section в модальном окне */
.modal .data-section {
    margin: 0;
    padding: 0;
    border: none;
}

.modal .data-section .data-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

.modal .data-section .data-item:last-child {
    border-bottom: none;
}

.modal .data-section__link {
    display: none; /* Скрываем ссылку "More details" в модальном окне */
}

.modal-description {
    padding: 16px 0;
}

.modal-description h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.modal-description-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-text);
}

.google-material-icons {
    font-size: 24px;
    color: var(--light-text);
    padding: 3px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
}

/* Опционально: добавим стили для ховера */
.google-material-icons:hover {
    background: #d0d0d0;
}

/* .header-icon {
    width: 32px;
    height: 36px;
    padding: 3px;
    cursor: pointer;
    vertical-align: middle;
} */

/* PWA Loader */
#pwaLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #01875f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Button loader styling */
.button-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

.developer-contact__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.developer-contact__item {
  display: flex;
  gap: 10px;
}

.developer-contact__item-title {
  font-size: 14px;
  color: var(--light-text);
}

.developer-contact__item-value {
  font-size: 14px;
  color: var(--text-color);
}

.developer-contact__item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

