.photo-checkbox input[type="checkbox"] {
    display: none;
  }
  
  .photo-checkbox {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
  }
  
  .photo-checkbox label {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #932df2;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
  }
  
  .photo-checkbox label:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
  }
  
  .photo-checkbox label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #932df2;
    opacity: 0;
    transition: all 0.2s;
  }
  
  .photo-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }
  
  .photo-grid {
    margin-bottom: 20px;
    height: 380px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
    scrollbar-width: thin;
    scrollbar-color: #932df2 #f0f0f0;
    max-width: 100%;
  }
  
  .photo-grid::-webkit-scrollbar {
    width: 6px;
  }
  
  .photo-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  .photo-grid::-webkit-scrollbar-thumb {
    background: #932df2;
    border-radius: 10px;
  }
  
  .photo-container {
    height: 95px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .pagination-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    border-radius: 50%;
  }
  
  .pagination-btn.active {
    background-color: #932df2 !important;
    color: white;
  }
  .mb-3 {
    margin-bottom: 10px !important;
}
  
  .selected-photos-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom:15px;
  }
  
  .preview-container {
    display: inline-block;
    position: relative;
  }
  
  .preview-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #932df2;
    cursor: pointer;
  }
  
  .likes-count {
    position: absolute;
    bottom: -10px;
    right: 13px;
    background-color: #932df2;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
  }
  
  .preview-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #932df2;
    cursor: pointer;
  }
  
  .preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  .likes-info {
    color: #932df2;
    font-weight: bold;
    font-size: 14px;
    margin-top: -5px;
  }
  
  div[style*="float:right; width:100%;    text-align: right;"] {
    width: 40px !important;
    float: right;
    margin-left: auto;
    pointer-events: none;
  }
  
  div[style*="float:right; width:100%;    text-align: right;"] p {
    margin: 0;
    padding: 0;
    width: 40px;
    text-align: center;
  }
  
  div[style*="float:right; width:100%;    text-align: right;"] p i {
    pointer-events: auto;
    cursor: pointer;
  }
  
  .custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .distribution-popup {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .distribution-popup h3 {
    color: #932df2;
    margin-bottom: 15px;
  }
  
  .photos-preview {
    margin: 15px 0;
  }
  
  .confirm-btn {
    margin-top: 15px;
  }
  
  .photo-checkbox label {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
  }
  
  .photo-checkbox label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #932df2;
    opacity: 0;
    transition: all 0.2s;
  }
  
  .photo-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }
  
  .photo-grid {
    margin-bottom: 20px;
    height: 350px;
    overflow-y: auto; /* Sadece dikey scroll */
    overflow-x: hidden; /* Yatay scroll'u kaldır */
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: #932df2 #f0f0f0;
    max-width: 100%;
  }
  
  /* Webkit tarayıcılar için scroll çubuğu stili */
  .photo-grid::-webkit-scrollbar {
    width: 6px;
  }
  
  .photo-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  .photo-grid::-webkit-scrollbar-thumb {
    background: #932df2;
    border-radius: 10px;
  }
  
  
  .pagination-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    border-radius: 50%;
  }
  
  .pagination-btn.active {
    background-color: #932df2 !important;
    color: white;
  }
  
  /* Selected Photos Preview Styles */
  .selected-photos-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .preview-container {
    display: inline-block;
    position: relative;
  }
  
  .preview-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #932df2;
    cursor: pointer;
  }
  
  .preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .photo-likes-count {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #rgba(0, 0, 0, 0.5) !important;
    color: white;
    width: 28px;
    height: 28px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 5;
    padding:0px 10px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-radius:15px !important;
  }
  
  .likes-info {
    color: #932df2;
    font-weight: bold;
    font-size: 14px;
    margin-top: -5px;
  }
  
  /* Sepetteki silme butonu için özel stil */
  div[style*="float:right; width:100%;    text-align: right;"] {
    width: 40px !important;
    float: right;
    margin-left: auto;
    pointer-events: none; /* Tüm container'ın tıklanabilirliğini devre dışı bırak */
  }
  
  div[style*="float:right; width:100%;    text-align: right;"] p {
    margin: 0;
    padding: 0;
    width: 40px;
    text-align: center;
  }
  
  div[style*="float:right; width:100%;    text-align: right;"] p i {
    pointer-events: auto; /* Sadece ikon tıklanabilir */
    cursor: pointer;
  }
  
  /* Distribution Popup Styles */
  .custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .distribution-popup {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .distribution-popup h3 {
    color: #932df2;
    margin-bottom: 15px;
  }
  
  .photos-preview {
    margin: 15px 0;
  }
  
  .confirm-btn {
    margin-top: 15px;
  }

  .artibtn {
    animation-duration: 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: placeholderAnimate;
    background: #f6f7f8; /* background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%); */
    background: linear-gradient(to right, #7045e89e 2%, #b5b1b10a 18%, #7045e89e 33%);
    background-size: auto;
    background-size: 1300px;
    color: white!important;
}

.lockedp {
}

.blink_me {
    animation: blinker 1.5s linear infinite;
    color: white !important;
}

@keyframes blinker {
    50% {
        opacity: 0.25;
    }
}

.asas {
    background: radial-gradient(circle farthest-corner at 35% 90%, #ff7e7e85, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #f964fe, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #d7ff18f7, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #ff5959, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #ffe686, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #d72c54e8, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a94, transparent), linear-gradient(#6559ca12, #bc318f3b 30%, #fa154b4f 50%, #383bf77d 70%, #30302f 100%);
}

.asasuser {
    background: radial-gradient(circle farthest-corner at 35% 90%, #ff7e7e85, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #f964fe, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #d7ff18f7, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #ff5959, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #ffe686, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #ff0000e8, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #ff76b1, transparent), linear-gradient(#f98e8e12, #0000003b 30%, #fa154b4f 50%, #7274ee7d 70%, #30302f 100%);
}

.tabs-pill a[aria-expanded="true"] {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fffc2308, #cc00003d 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, #ff00e34d 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf66, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf5e, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc24d, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc27d, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a40, transparent), linear-gradient(#6559ca12, #bc318f3b 30%, #e33f5f5e 50%, #f776387d 70%, #fec66d75 100%) !important
}

.anirun {
    animation-duration: 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: placeholderAnimate;
    background: #f6f7f8;
    background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);
    background-size: auto;
    background-size: 1300px;
}

@keyframes placeholderAnimate {
    0% {
        background-position: -650px 0;
    }
    100% {
        background-position: 650px 0;
    }
}

.asas2 {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fffc2308, #cc00003d 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, #ffa9f64d 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf66, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf5e, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc24d, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc27d, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a40, transparent), linear-gradient(#6559ca12, #bc318f3b 30%, #e33f5f5e 50%, #f776387d 70%, #fec66d75 100%) !important
}
.front,
.back {
    text-align: center;
}

.front:after {
    position: absolute;
    width: 40px;
    height: 10px;
    bottom: 12px;
    z-index: -1;
    -webkit-transform: translateZ(-1px);
    -webkit-backface-visibility: hidden;
}

.back:after {
    position: absolute;
    width: 40px;
    height: 10px;
    bottom: 12px;
    z-index: -1;
    -webkit-transform: translateZ(-1px);
    -webkit-backface-visibility: hidden;
}

.flip-container {
    -webkit-perspective: 1000;
}

/* flip the pane when hovered */

.flip-container.flip .flipper {
    -webkit-transform: rotateY(180deg);
}

.flip-container,
.front,
.back {
    margin-left: auto;
    margin-right: auto;
    width: 40px;
    height: 40px;
}

/* flip speed goes here */

.flipper {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    position: relative;
}

/* hide back of pane during swap */

.front,
.back {
    -webkit-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

/* back, initially hidden pane */

.back {
    -webkit-transform: rotateY(180deg) translateZ(1px);
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
}

.hhsh{
  margin-top:10px;
}