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

/* Hide all page sections until JavaScript activates one */
.homepage1.page {
    display: none !important;
}

/* Only show the one that has .active */
.homepage1.page.active {
    display: block !important;   /* or flex/grid depending on your layout */
}

.wallet-title, .notifications-body {
  font-family: 'Noto Sans JP';
  text-align: center;
}

.masonry-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 6px 10px;
  background-color: rgb(248,248, 248);
  font-family: 'Noto Sans JP', sans-serif;
}

.meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-username {
  font-size: 12px;
  color: #111;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-heart {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: black;
  stroke-width: 2;
  cursor: pointer;
}

.meta-likes {
  font-size: 12px;
  color: #444;
}

/* WALLET UI */
#wallet {
  background: #fff;
}

.wallet-body {
  padding: 16px;
}

.wallet-title {
  font-weight: 600;
  font-size: 16px;
}

.wallet-card {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
}

.wallet-label {
  font-size: 13px;
  opacity: 0.7;
}

.wallet-balance {
  font-size: 42px;
  font-weight: 800;
  margin: 6px 0;
}

.wallet-points {
  font-size: 14px;
  opacity: 0.6;
}

.wallet-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}

.wallet-btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  font-weight: 600;
}

.wallet-btn.primary {
  background: #f40752;
  color: #fff;
  border: none;
}

.wallet-transactions {
  margin-top: 10px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.transaction {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.tx-title {
  font-size: 14px;
  font-weight: 500;
}

.tx-date {
  font-size: 12px;
  color: #888;
}

.tx-amount {
  font-weight: 600;
}

.tx-amount.positive {
  color: #0bbf6a;
}

.tx-amount.negative {
  color: #e53935;
}

/* Profile page post styles */
.profile-post {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.post-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-content {
  padding: 10px 15px;
}

.post-stats {
  display: flex;
  padding: 10px 15px;
  border-top: 1px solid #eee;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.stat-item img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

/* Edit profile modal styles */
.edit-profile-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content1 {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
}

.modal-header1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-modal {
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-group textarea {
  height: 100px;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn {
  border: 1px solid #ccc;
  color: #555;
  background-color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.save-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
}

.empty-posts-message {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin: 10px 0;
} 

/* Ensure the account icon/profile icon is clickable with proper cursor */
.account-icon, .profile-icon, .me-icon {
  cursor: pointer;
}

.loggedin {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

.masonry .contentma p.partner {
    text-align: left;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.partner {
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  white-space: pre-wrap;
}

}
.post-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
  background: #fff;
}
.page {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.active {
  display: block;
  opacity: 1;
}
.edre {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.comment-container {
  font-family: Noto Sans JP, roboto;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      caret-color: rgb(244, 7, 82);
      border-radius: 30px 30px 0 0;
      background-color: rgb(234, 237, 240);
    }

    .comment-wrapper {
      max-width: 768px;
      margin: 0 auto;
    }

    .comment-box {
      position: relative;
      background-color: rgb(234, 237, 240);
      border: none;
      border-radius: 20px;
    }

.comment-textarea {
  width: 100%;
  min-height: 44px;
  max-height: 300px;
  padding: 15px;
  background: transparent;
  border: none;
  resize: none;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.caun {
  width: 30px;
  height: 30px;
}
.cinu {
  width: 20px;
  height: 20px;
}
.isji {
  display: flex;
  align-items: center;
  gap: 15px;
}
.emoji-btn, .send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}

    .emoji-btn {
      background: transparent;
      color: #6b7280;
    }

    .emoji-btn:hover {
      color: #374151;
    }

    .send-btn {
      background: #3b82f6;
      color: white;
    }

    .send-btn:hover {
      background: #2563eb;
    }

    .send-btn:disabled {
      background: #e5e7eb;
      color: #9ca3af;
      cursor: not-allowed;
    } 
.video-container {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  max-height: 300px;
}
.playerx {
  position: absolute;
  top: 10x;
  right: 10px;
  width: 70px;
  height: 70px;
}
.power {
  pointer-events: none;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.play-button {
  transition: transform 0.3s;
}

.video-container:hover .play-button {
  transform: scale(1.1);
}

.duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* Video Modal (Fullscreen) */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  flex-direction: column;
}

.modal-header {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: Noto Sans JP, roboto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 15px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10000;
}

.back-button {
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(200, 200, 200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-button img {
  width: 15px;
  height: 15px;
}

.modal-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar img {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  object-fit: cover;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.username {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 15px;
}

.verify-badge {
  width: 16px;
  height: 16px;
}

.timestamp {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.follow-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.follow-button.following {
  background: rgba(255, 255, 255, 0.2);
}

.video-player-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}

.fullscreen-player{
  width: auto;
  height: 100vh;
  position: absolute;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: opacity 0.3s;
  z-index: 10000;
}

.progress-container {
  margin-bottom: 10px;
}

.progress-bar {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 8px;
  cursor: pointer;
}

.progress-filled {
  height: 100%;
  background: #ff3b5c;
  border-radius: 2px;
  width: 0%;
  position: relative;
}

.progress-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #ff3b5c;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}

.progress-bar:hover .progress-handle {
  opacity: 1;
}

.time-display {
  font-family: Noto Sans JP, roboto;
  color: white;
  font-size: 12px;
  text-align: right;
}

.control-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
}

.play-pause-btn, .volume-control {
  cursor: pointer;
}

.modal-content {
  display: none;
  padding: 16px;
  color: white;
  max-height: 100px;
  overflow-y: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-post-text {
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

.modal-actions {
  display: none;
  padding: 12px 16px;
}

.action-buttons {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: white;
}

.action-button img {
  width: 24px;
  height: 24px;
}

.action-button span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Animation for controls */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

/*
@media screen and (min-height: 719px) {
  .fullscreen-video video {
    height: 80vh;
    object-fit: cover;
  }
}



@media screen and (max-height: 720px) {
  .fullscreen-video video {
    top: 30%;
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100vh;
  }
} */

.custom-controls {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  padding: 20px;
  display: none;
  z-index: 1009;
} 

.intro {
  position: fixed;
  bottom: 120px;
  margin-left: -10px;
  z-index: 1000;
}
.yese {
  position: fixed;
  bottom: 60px;
  height: 200px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 1));
  z-index: 1;
}
.brite {
  color: rgb(200,200,200);
  font-size: 15px;
  margin-left: 5px;
}
.tirr {
  position: fixed;
  bottom: 60px;
  width: 100%;
  color: white;
  margin-left: -6px;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-right: 50px;
  padding-left: 5px;
  z-index: 1000;
}

.bordu {
  border-bottom-width: none;
}
.bigg {
  font-size: 7px;
  color: white;
  
}
.marhun {
  margin-left: 20px;
}


.progress {
  width: 0%;
  height: 100%;
  background: rgb(220, 220, 220);
  border-radius: 2px;
  z-index: 1009;
}

.wingo {
  width: 300px;
}

.haja {
  color: white;
  padding: 10px 0px 10px 20px;
  font-size: 15px;
  border-radius: 40px;
  width: 100%;
  outline: none;
  border: 0px;
  background-color: rgb(75, 75, 75);
}
.haja:focus {
  border: 1px solid rgb(244, 7, 82); 
}
.haja::placeholder {
  color: rgb(200,200, 200);
  font-size: 15px;
}
.fuck {
  width: 40px;
  height: 40px; 
  object-fit: cover;
  border-radius: 10px;
  transition: filter 0.15s;
  align-content: center;
}
.tiktok {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  bottom: 150px;
  right: 15px;
  z-index: 20000;
}
.gretu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.tuk {
  width: 30px;
}
.icun {
  color: white;
  font-size: 14px;
  font-weight: 500;
}



.foni {
  margin-left: 30px;
  padding: 5px 10px;
  display: inline-block;
  font-size: 13px;
}
.foni.follow { 
  padding: 5px 10px;
  color: rgb(20, 20, 20);
  border: 1px solid rgb(97, 97, 97);
  background-color: transparent;
}
.loading-bar {
  top: 54px;
  width: 100%;
  height: 2px;
  background-color: rgb(220, 220, 220);
  position: fixed;
  overflow: hidden;
  z-index: 1000;
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: rgb(244, 7, 82);
  animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
.homepage1 {
  border-style: solid;
  border-width: 1px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
  border-color: rgb(230, 230, 230);
}
.usi {
  background-color: aquamarine;
  width: 585px;
}
.homepage1-profile {
  border-style: solid;
  border-width: 1px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
  border-color: rgb(230, 230, 230);
}
.homepage1::-webkit-scrollbar {
  display: none;
}
.home, .search {
  width: 25px;
}
.profi {
  width: 585px;
  padding-right: 10px;
}
.rety {
  position: relative;
  width: 585px;
}
.masonry {
  width: 100%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  background: #f0f0f0;
}
.contentma{
  padding: 5px;
  width: 100%;
  font-size: 15.5px;
}
.bioi {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
}
.goo {
  font-size: 13px;
}
.fred {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgb(75, 75, 75);
}
.masonry .brekca {
  border-radius: 5px;
  object-fit: cover;
  object-position: top;
  width: 20px;
  height: 20px;
}
.masonry .pen {
  width: 20px;
}
.masonry img, .masonry video {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.masonro {
  width: 100%;
  background: white;
}
.masonri {
  display: flex;
  gap: 5px;
  width: 100%;
  padding: 0px 5px 0px 5px;
}
.frin {
  width: 100%;
}
.kor {
  width: 200px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  position: absolute;
  top: 150px;
  right: 50px;
  border-style: solid;
  border-color: rgb(234, 237, 240);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.5);
}

.vre {
  margin-top: 30px;
}
.man {
  display: flex;
  gap: 10px;
}
.ewe {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: rgb(234, 237, 240);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgb(234, 237, 240);
  background-color: rgba(255,255,255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: all 0.3s ease;
}
.ewe.fixed {
  position: fixed;
  top: var(--header-height, 50px);
  left: 0;
  right: 0;
  margin-bottom: 20px;
}
.dee {
  width: 30px;
}
.yeb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 60px;
  transition: all 0.2s;
}
#profile {
  overflow-x: hidden;
}
.aasw {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 10px;
  background-color: black;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
.aas {
  padding: 4px 7px;
  border-radius: 10px;
  background-color: black;
  border: none;
  height: 39px;
}
.inboxa {
  width: 20px;
}
.homepage1 .header-order {
  background-color: rgba(234, 237, 240, 0.8);
  border-bottom-color: rgb(220, 220, 220);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  backdrop-filter: blur(10px);
}
.klr {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}
.nin {
  padding-top: 10px;
}
.cha {
  padding-top: 20px;
  font-size: 15px;
}
.drun {
  display: flex;
  align-items: center;
}
.drum {
  display: flex;
  align-items: center;
  background-color: rgb(234, 237, 240);
  padding: 3px 6px;
  border-radius: 7px;

}
.pictu {
  width: 585px;
  display: flex;
  flex-wrap: wrap;
}
.pico1 {
  flex: 1 1 calc(33.333% - 10px);
  margin: 1px;
}
.pico {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.druu {
  gap: 10px;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.offi {
  width: 30px;
}
.kiy {
  width: 15px;
}
.swe {
  font-size: 14px;
  margin-right: 4px;
}
.bld {
  color: black;
  font-weight: bold;
  margin-right: 5px;
}
.rkl {
  font-size: 15px;
  color: #666;
}
.spe {
  font-size: 30px;
  font-weight: 500;
}
.poster {
  display: block;
  width: 565px;
  border-width: 0px;
  border-style: solid;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  transition: background-color 0.2s;
}
.poster:hover {
  background-color: rgb(250, 250, 250);
}
.pos {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.link-wrapper {
  display: inline-block;
  cursor: pointer;
  position: relative;
  align-items: center;
}
.cust-name {
  display: flex;
  justify-content: space-between;
  align-items: top;
  margin-top: 5px;
}
.heading {
  display: flex;
  align-content: center;
}
.heed {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mdc {
  display: flex;
}
.logs1 {
  width: 40px;
}
.small-photo1 {
  width: 50px;
  vertical-align: middle;
  position: relative;
}
.lino, .lino:active {
  text-decoration: none;
  color: inherit;
}
.mansonro {
  padding-top: 0px;
}
.small-photo, .hui {
  width: 45px;
  object-fit: cover;
  object-position: middle;
  border-radius: 10px;
  transition: filter 0.15s;
}
.hui {
  width: 35px;
  height: 35px;
  object-fit: cover;
  object-position: top;
}
.rem {
  position: absolute;
  width: 25px;
  top: 180px;
  right: 130px;
}
.vet {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  color: rgb(189, 187, 187);
}
.vrea {
  position: absolute;
  bottom: -8px;
  right: 8px;
}
.small-photo:hover {
  filter: brightness(0.9);
}
.post1 {
  display: flex;
  margin-left: 5px;
  font-size: 15px;
  align-items: center;
}
.jerry {
  display: flex;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.post1:hover .jerry {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.verify {
  width: 18px;
  margin-left: 5px;
  display: block;
}
.verif {
  width: 15px;
  display: block;
  margin-left: 3px;
}
.comp, .compo {
  font-size: 15px;
  color: rgb(97, 97, 97);
  margin-left: 5px;
  cursor: pointer;
  margin-right: 5px;
}
.heado {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-order1 {
  display: flex;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  padding-top: 15px;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0px;
}
.compo {
  margin: 0;
}
.time {
  font-size: 15px;
  margin-left: 5px;
  color: rgb(97, 97, 97);
  cursor: pointer;
}
.time:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.cll {
  position: relative;
}
.dot {
  width: 14px;
  vertical-align: middle;
}
.laptop1 {
  background-color: none;
  max-width: 565px;
  max-height: 700px;
  border-color: rgb(202, 202, 202);
  margin-top: 10px;
  padding: 0;
}
.swet {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.laptop {
  max-height: 700px;
  margin: 0;
  width: 100%;
  object-fit: contain;
  height: 100%;
  display: block;
}

.lapto {
  max-height: 700px;
  margin: 0;
  width: 100%;
  object-fit: contain;
  height: 100%;
  display: block;
}
.viewe {
  font-size: 13px;
}
.twito {
  width: 20px;
}
.twits {
  display: flex;
  align-items: bottom;
  gap: 5px;
  margin-right: 10px;
}
.lefto {
  display: flex;
  flex-direction: row;
  gap: 5px;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: rgb(220, 220, 220);
}
.dick {
  display: flex;
  gap: 5px;
  margin-left: 10px;
}
.lefti {
  width: 18px;
}
.leti {
  width: 18px;
}
.werey {
  font-weight: 600;
}
.reer {
  color: rgba(244, 7, 82, 0.7);
}
.tir {
  padding-top: 10px;
  padding-bottom: 8px;
  padding-right: 5px;
  padding-left: 5px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgb(220, 220, 220);
}
.tired {
  width: 100%;
  font-size: 15px;
  white-space: pre-wrap;
}
.tiri {
  width: 100%;
  line-height: 24px;
  font-size: 17px; 
  white-space: pre-wrap;
}
.line, .mid {
  color: rgb(97, 97, 97);
  width: 530px;
  border-width: 0.5px;
  margin-bottom: 15px;
  margin-top: 10px;
}
.reaction {
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
}
.lovi {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.stri {
  position: fixed;
  top: 0;
}
.strea {
  display: flex;
  background-color:white;
  opacity: 0.9;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}
.tabs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.pat {
  width: 100%;
}
.stre {
  font-size: 20px;
  font-weight: 600;
}
.love1, .comment1, .share1, .wish1, .dots, .shari {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
}
.shari {
  background-color: rgb(234, 237, 240);
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 4px;
  padding-right: 5px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(220, 220, 220);
}
.ron {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: rgb(250, 252, 255);
  justify-content: space-between;
  align-items: center;
}
.soci {
  display: flex;
  align-items: center;
}
.mob {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  background-color: rgb(234, 237, 240);
  margin-right: 10px;
  cursor: pointer;
}
.soc {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
}
.media {
  width: 15px;
}
.socia {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-left: 10px;
}
.social, .med {
  font-size: 13px;
  font-weight: 450;
}
.mal {
  padding-bottom: 5px;
}
.medi {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.med {
  color:  rgb(97, 97, 97);
  font-weight: normal;
}
.love1 .tool, .comment1 .tool, .share1 .tool, .wish1 .tool, .dots .tool, .cll .tool, .exp .tool, .cart1 .tool,  .exp-order .tool{
  position: absolute;
  background-color: rgb(97, 97, 97);
  color: white;
  padding-top: 1px;
  padding-bottom: 2px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 3px;
  bottom: -30px;
  right: 20px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s;
  transition-delay: 0.5s; 
  white-space: nowrap;
  z-index: 100;
}
.cll .tool {
  display: flex;
  justify-content: center;
  bottom: -30px;
  right: -50px;
}
.dots .tool, .wish1 .tool, .exp-order .tool {
  bottom: -30px;
  right: 0px;
}
.cart1 .tool {
  bottom: -30px;
  right: -10px;
}
.love1:hover .tool, .comment1:hover .tool, .share1:hover .tool, .wish1:hover .tool, .dots:hover .tool, .cll:hover .tool, .exp:hover .tool, .cart1:hover .tool, .exp-order:hover .tool {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
.jerr {
  position: relative;
}
.pro-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  background-color: white;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  bottom: -228px;
  left: -50px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  transition-delay: 0.7s; 
  cursor: default;
  z-index: 100;
}

.paye {
  padding: 8.5px 0px !important;
}

.link-wrapper:hover .pro-info,
.small-photo1:hover .pro-info
 {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.link-wrapper .post1 {
  opacity: 1;
  pointer-events: auto;
}
.cla {
  display: flex;
  align-items: center;
}
.exp {
  position: relative;
  cursor: pointer;
}
.exp .tool {
  display: flex;
  justify-content: center;
  width: 65px;
  bottom: -30px;
  right: 0px;
}
.comp1 {
  display: flex;
  align-items: center;
}
.pro-pro {
  height: 110px;
  width: 80px;
  border-radius: 5px;
  object-fit: cover;
  transition: filter 0.2s;
}
.pro-pro:hover {
  filter: brightness(0.9);
  cursor: pointer;
}
.jerry1 {
  font-size: 16px;
  font-weight: 600;
}
.jerry1:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  cursor: pointer;
}
.winn {
  display: flex;
  gap: 15px;
}
.wiin {
  display: flex;
  align-items: center;
  padding-left: 25px;
  gap: 50px;
  margin-top: 10px;
}
/* Header profile picture container */
.header-profile-pic {
  position: absolute;
  right: 25px;
  display: block; /* Hidden by default, shown on scroll */
  transition: all 0.3s ease;
  opacity: 1;
}

.header-profile-pic.visible {
  opacity: 1;
}

.header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid white;
}

/* Header follow button container */
.header-follow-btn {
  position: absolute;
  left: 60px;
  top: 7px;;/* Position next to back button */
  display: none; /* Hidden by default, shown on scroll */
  transition: all 0.3s ease;
  opacity: 0;
}

.header-follow-btn.visible {
  opacity: 1;
}

.header-follow {
  background-color: black; /* Twitter blue color, change as needed */
  color: white;
  border: none;
  border-radius: 8px;
  padding: 3px 6px;
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.header-follow:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.proo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tiro {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.com {
  font-size: 15px;
  color: rgb(97, 97, 97);
}
.kas {
  display: flex;
  flex-direction: column;
}

.folu {
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 5px;
  border: none;
  background-color: rgb(202, 202, 202);
  color: black;
  font-weight: bold;
}
.folu:hover {
  background-color: rgb(220, 220, 220);
}
.love, .comment, .share, .twit, .luve {
  width: 24px;
  vertical-align: middle;
}
.twit {
  align-items: center;
}
.luve {
  width: 20px;
}
.sharo {
  width: 18px;
  vertical-align: middle;
}
.like, .talk, .give { 
  color: black;
  font-size: 13px;
  vertical-align: middle;
}
.wish1 {
  display: flex;
  justify-content: flex-end;
  width: 170px;
}
.wish {
  width: 15px;
}


/*profile starts here */

.profile-dash-profile {
  width: 100%;
  align-items: center;
  display: flex;
  gap: 20px;
}
.bio-info-profile {
  width: 100%;
  max-height: 700px;
}
.bio-pics-profile {
  vertical-align: top;
}
.prof-profile {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(244, 7, 82);
}
.star1-profile {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.star-profile {
  width: 20px;
}
.tag1-profile {
  width: 100%;
}
.username1-profile {
  width: 100%;
  margin-top: 5px
}
.username-profile {
  color: black;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0;
}
.tag-profile {
  font-size: 15px;
  color: rgb(97, 97, 97);
  margin-top: 5px;
}
.bio1 {
  width: 100%;
} 
.bio11-profile {
  width: 100%;
}
.sales1-profile {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
}
.location1 {
  width: 100%;
}
.sales-profile, .location-profile {
  font-size: 15px;
  color: rgb(97,97, 97);
  margin-top: 5px;
  margin-bottom: 0;
}
.loc-profile {
  width: 25px;
  vertical-align: bottom;
  margin-right: 5px;
}
.follow1-profile {
  width: 100%
}
.follows-profile {
  font-size: 15px;
  color: rgb(97, 97, 97);
  margin-top: 20px;
  margin-bottom: 0;
}
.fol-profile {
  color: black;
  font-weight: 500;
}
.messa-profile {
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 88px;
  padding-right: 88px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  color: black;
  border: none;
}
.massa-profile, .massa-otheruser {
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 115px;
  padding-right: 115px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: bold;
  color: white;
  background-color:rgb(50, 1, 184);
}
.massa-otheruser {
  padding-left: 125px;
  padding-right: 125px;
}
.menu-profile {
  display: flex;
}
.messag1-profile, .messag2-profile, .messag3-profile {
  text-align: center;
  padding-left: 65px;
  padding-right: 65px;
  margin: 0;
}
.messag1-profile {
  border-bottom: 5px solid;
  color: rgb(244, 7, 82);
  border-color:rgb(50, 1, 184);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag2-profile {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag3-profile {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 0px solid;
}
.messag1, .messag2, .messag3 {
  text-align: center;
  margin: 0;
}
.messag1-otheruser-storefront, .messag2-otheruser-storefront, .messag3-otheruser-storefront {
  text-align: center;
  margin: 0;
}
.messag1-otheruser-storefront {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag2-otheruser-storefront {
  border-bottom: 5px solid;
  color: rgb(244, 7, 82);
  border-color:rgb(244, 7, 82);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag3-otheruser-storefront {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag1-otheruser-storefront:hover, .messag2-otheruser-storefront:hover, .messag3-otheruser-storefront:hover{
  background-color: rgb(234, 237, 240);
}
.messag1-profile-storefront, .messag2-profile-storefront, .messag3-profile-storefront {
  text-align: center;
  margin: 0;
  padding-left: 65px;
  padding-right: 65px;
}
.messag1-profile-storefront {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag2-profile-storefront {
  border-bottom: 5px solid;
  color: rgb(244, 7, 82);
  border-color: rgb(244, 7, 82);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag3-profile-storefront {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag1-profile-storefront:hover, .messag2-profile-storefront:hover, .messag3-profile-storefront:hover{
  background-color: rgb(234, 237, 240);
}
.massa-profile:hover {
  background-color: rgb(244, 7, 82);
}
.messag1-profile:hover, .messag2-profile:hover, .messag3-profile:hover{
  background-color: rgb(234, 237, 240);
}
.poster-profile {
  display: block;
  width: 565px;
  border-width: 0px;
  border-style: solid;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  padding-top: 5px;
  padding-bottom: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}


/* This begins the wishlist profile  */

.messag1-wishlist, .messag2-wishlist, .messag3-wishlist {
  text-align: center;
  margin: 0;
  padding-left: 65px;
  padding-right: 65px;
}
.messag1-wishlist:hover, .messag2-wishlist:hover, .messag3-wishlist:hover{
  background-color: rgb(234, 237, 240);
}
.messag1-wishlist {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag2-wishlist {
  color: rgb(97,97, 97);
  padding-top: 20px;
  padding-bottom: 20px;
}
.messag3-wishlist {
  border-bottom: 5px solid;
  color: rgb(244, 7, 82);
  border-color: rgb(244, 7, 82);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.p111 {
  display: grid;
  grid-template-columns: 179px 1fr;
  column-gap: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(220, 220, 220);
  border-radius: 10px;
}
.p110 {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: contain;
  border-radius: 10px;
  margin-left: 2px;
  border: none;
}
.product1 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-left: 10px;
  color: black;
}
.product2 {
  font-size: 13px;
  margin-top: 5px;
  margin-left: 10px;
  color: rgb(97, 97, 97);

}
.naira1 {
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.discount {
  margin-left: 10px;
  text-decoration: line-through;
  color: rgb(97, 97, 97);
  font-weight: bold;
}
.detail{
  display: grid;
  grid-template-columns: 150px 50px;
  align-items: center;
  column-gap: 20px;
}
.bart11 {
  margin-left: 5px;
}
.bart10 {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  font-size: 15px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  background-color: rgb(244, 7, 82);
  color: white;
  border-radius: 10px;
  vertical-align: bottom;
  border: none;
}
.Basketa {
  vertical-align: bottom;
  width: 20px;
  margin-left: 10px;
}
.bas {
  font-size: 15px;
  font-weight: 500;
}
.mk-wish {
  display: flex;
  align-items: center;
  width: 35px;
  padding-top:10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-radius: 100px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.wishes-prod1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* This begins the wallet page */

.wallet-wallet {
  position: relative;
  width: 565px;
}
.back-wallet {
  width: 585px;
  height: 220px;
  border-radius: 10px;
}
.balance-wallet {
  position: absolute;
  top: 30px;
  left: 50px;
}
.bal-wallet {
  font-size: 18px;
  color: rgb(189, 187, 187);
}
.balnce-wallet {
  position: absolute;
  top: 80px;
  left: 50px;
}
.bala-wallet {
  font-size: 40px;
  font-weight: bold;
  color: white;
}
.small-photo1-wallet {
  position: absolute;
  top: 10px;
  right: 25px;
}
.small-photo {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.backs1 {
  position: absolute;
  top: 20px;
  left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 100px;
}
.backs {
  width: 25px;
  text-align: center;
}
.backs1:hover {
  background-color: rgba(240, 240, 240, 0.116);
  color: black;
}
.pend1 {
  position: absolute;
  bottom: 40px;
  left: 50px;
}
.pend {
  font-family: Noto Sans JP;
  color: rgb(189, 187, 187);
}
.pending {
  font-family: Noto Sans JP;
  font-size: 20px;
  font-weight: bold;
  color: rgb(189, 187, 187);
}
.services {
  width: 565px;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-around;
  margin-top: 20px;
}
.send2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;;
}
.send1 {
  display: flex;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background-color: rgb(215, 231, 238);
}
.send, .recev, .bolt, .track {
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 15px;
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 15px;
}
.send-text, .recev-text, .top-up-text, .track-text {
  font-size: 18px;
  margin-top: 20px;
}
.recev2, .bolt2, .track2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;
}
.recev1, .bolt1, .track1 {
  display: flex;
  justify-content: center;
  border-radius: 100px;
  width: 70px;
  height: 70px;
}
.send1:hover {
  background-color:rgb(195, 229, 243) ;
}
.recev1 {
  background-color: rgb(206, 250, 209);
}
.recev1:hover {
  background-color: rgb(185, 250, 189);
}
.bolt1 {
  background-color: rgb(248, 217, 217);
}
.bolt1:hover {
  background-color: rgb(250, 196, 196);
}
.track1 {
  background-color: rgb(250, 206, 246);
}
.track1:hover {
  background-color: rgb(248, 185, 243);
}
.fulfilled-wallet {
  margin-bottom: 20px;
  width: 587px;
}
.shop-group-wallet {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.trent-wallet {
  display: inline-block;
  margin-bottom: 10px;
}
.shop-wallet {
  display: inline-block;
  width: 25px;
  margin-left: 10px;
  vertical-align: middle;
}
.pro-wallet {
  display: inline-block;
  vertical-align: middle;
}
.exp-wallet {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.exp-wallet:hover {
  background-color: rgb(234, 237, 240);
}
.flat-wallet {
  width: 25px;
  vertical-align: middle;
}
.prod0-wallet, .prod01-wallet {
  width: 179px;
  height: 260px;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
}
.prod1-wallet {
  width: 170px;
  height: 170px;
  border-radius: 30px;
  object-fit: contain;
}
.prod2-wallet {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: black;
}
.prod3-wallet {
  font-size: 13px;
  font-weight: bold;
  color: rgb(244, 7, 82);
  margin-top: 0;
}
.prod4-wallet {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 500;
  color: black;
}
.prod01-wallet {
  margin-left: 10px;
}
.rec11-wallet {
  margin-bottom: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
  width: 585px;
  border-style:solid;
  border-width: 1px;
  border-color: rgb(220, 220, 220);
}
.rec1-wallet, .rec2-wallet {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background-color:rgb(215, 231, 238) ;
  margin-left: 20px;
  margin-right: 10px;
}
.rec-wallet {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 100px;
}
.rec-name1-wallet {
  display: inline-block;
  vertical-align: middle;
  width: 360px;
}
.rec-name-wallet {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: black;
}
.rec-namo-wallet {
  font-size: 15px;
  color: rgb(60, 60, 60);
}
.folo1-wallet {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  margin-left: 10px;
}
.foloout-wallet {
  font-size: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 20px;
  padding-left: 20px;
  color:rgb(244, 7, 82);
  font-weight: bold;
}
.foloin-wallet {
  font-size: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 20px;
  padding-left: 20px;
  color:rgb(244, 7, 82);
  font-weight: bold;
}
.inbox-name {
  flex: 1;
}
.time-inbox {
  width: 50px;
  margin-right: 10px;
}
.inbox-mess {
  display: flex;
}
.story {
  position: relative;
}
.status {
  display: grid;
  grid-template-columns: 172px 172px 172px;
  width: 565px;
  column-gap: 24px;
  row-gap: 50px;
}
.memo {
  width: 172px;
  height: 256px;
  object-fit: cover;
  border-radius: 10px;
}
.flang1 {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 5px;
  top: 10px;
  left: 5px;
}
.str-man {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.str-nme, .str-nme1 {
  font-size: 12px;
  font-weight: bold;
  color: rgb(230, 230, 230);
}
.str-nme {
  font-weight: normal;
  font-size: 10px;
}
.monie {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  background-color: white;
  z-index: 10;
}
.first-mone {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}
.first-money {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 225px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(220, 220, 220);
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.week {
  width: 200px;
  color: rgb(60, 60, 60);
  font-size: 15px;
}
.moni {
  font-size: 35px;
  font-weight: bold;
}
.f-week {
  font-size: 13px;
  color: rgb(60, 60, 60);
}
.exp-order:hover {
  background-color: rgb(234, 237, 240);
}
.exp-order {
  padding-top: 1.8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.tr {
  border-width: 1px;
  border-style: solid;
  border-color: rgb(220, 220, 220);
  border-radius: 10px;
  width: 563px;
  font-size: 15px;
  padding-right: 10px;
  padding-left: 10px;
}
.custom1 {
  width: 150px;
}
.sal {
  width: 50px;
}
.cus1 {
  display: flex;
  gap: 40px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cus {
  display: flex;
  gap: 10px;
  padding-left: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(220, 220, 220);
}
.cus:hover {
  background-color: rgb(234, 237, 240);
}
.cu {
  width: 170px;
  display: flex;
  flex-direction: column;
}
.custo {
  width: 135px;
  margin-left: 5px;
  color: rgb(60, 60, 60);
}
.typ {
  width: 40px;
  color: rgb(60, 60, 60);
}
.statu {
  margin-right: 20px;
  color: rgb(60, 60, 60);
}
.custom, .fu, .fulf {
  font-weight: bold;
}
.custome {
  color: rgb(60, 60, 60);
  font-size: 14px;
}
.ful, .ful1, .ful2 {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: greenyellow;
  height: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px;
}
.ful1 {
  background-color: orange;
}
.ful2 {
  background-color: rgb(244, 7, 82);
}
.fu {
  font-size: 13px;
}
.ful11 {
  width: 90px;
}
.dat {
  width: 110px;
  color: rgb(60, 60, 60);
}
.amoun {
  color: rgb(60, 60, 60);
}
.or {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
  color: black;
}
.ord {
  font-size: 15px;
  color: rgb(60, 60, 60);
}
.orde {
  margin-top: 20px;
  margin-bottom: 40px;
  margin-left: 10px;
}
.filte {
  display: flex;
}
.fi {
  width: 430px;
}
.w, .mo {
  width: 60px;
}
.we {
  display: flex;
  background-color: rgb(234, 237, 240);
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  width: 160px;
  margin-bottom: 10px;
}
.wee {
  display: flex;
  justify-content: center;
  border-radius: 2px;
  width: 50px;
  background-color: white;
  font-size: 14px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.mo, .fil {
  font-size: 14px;
}
.fulle {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
}
.fil {
  display: flex;
  gap: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  border-color:rgb(220, 220, 220);
  width: 60px;
}
.filt {
  width: 15px;
}
.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30px;
  cursor: pointer;
}
.dots:hover {
  background-color: rgba(50, 1, 184, 0.123);
}


.detail-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    position: fixed;
    top: 0;
    right: 0;
    height: 54.3px;
    padding: 10px 20px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
}

.detail-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-profile-pic img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid white;
    object-fit: cover;
}

.detail-username {
    font-size: 15px;
    font-weight: 600;
}

.detail-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-follow {
  display: flex;
    padding: 6px 12px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.shui {
  display: flex;
}

.detail-menu {
    width: 15px;
    height: 15px;
}

.detail-content.visible {
    opacity: 1;
    pointer-events: auto;
}

.sted {
  width: 20px;
}

.spoil {
  width: 26px !important;
  height: 26px !important;
}

.buyt {
  width: 30px !important;
}
.dil {
  display: flex;
  gap: 20px;
}
.page {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.page.active {
    opacity: 1;
}
 .placeholder {
   background-size: contain;
  background-repeat: no-repeat;
 position: relative;
 overflow: hidden;
 }
 
 .placeholder img {
   object-fit: cover;
 position: absolute;
 opacity: 0;
 top: 0;
 left: 0;
 width: 100%;  
  height: 100%;
 transition: opacity 1s linear;
 }
 
  .placeholder1 {
   object-position: middle !important;
 }
 
 
 .placeholder img.loaded {
 opacity: 1;
 }
 
 .img-small {
 transform: scale(1); 
 }
 
 
 
 
   .skeleton {
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    animation: shimmer 1.5s infinite;
  }
  .skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
  }
  .skeleton-text {
    height: 16px;
    background: #e0e0e0;
    margin: 8px 0;
    border-radius: 4px;
  }
  .skeleton-text.short { width: 60%; }
  .skeleton-text.medium { width: 80%; }
  .skeleton-text.long { width: 100%; }
  .skeleton-reactions {
    height: 30px;
    background: #e0e0e0;
    border-radius: 4px;
  }
  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
