html {
  font-size: 14px;
}
.image-card-container {
    position: relative;
    overflow: hidden;
}

.image-trash-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    background-color: rgba(220, 53, 69, 0.85); /* Bootstrap danger with transparency */
    border: none;
    padding: 4px 6px;
    border-radius: 50%;
    max-width: 75px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-trash-btn i {
        font-size: 16px;
    }
#outterContMain {
    opacity: 0;
    transition: opacity 1s ease;
    background-color: #0c0c0c; /* dark fallback */
    min-height: 100vh;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
/* Ensure the mobile menu overlays content instead of pushing it down */
@media (max-width: 992px) { /* Adjusts for smaller screens */
    .navbar-collapse {
        position: absolute;
        top: 56px; /* Adjust to match your navbar height */
        left: 0;
        width: 100%;
        background: #000000;
        z-index: 1050; 
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #ddd; /* Optional */
    }
    .loading-indicator {
        width: 250px;
        height: 250px;
        background: url("../images/loading.gif") no-repeat center center;
        background-size: contain;
    }

    /* Ensures navbar does not affect layout */
    .navbar-nav {
        padding: 10px;
    }
}
.randomPrompt {
    float: right;
    padding-right: 40px;
    color: purple;
}
.gradient-text {
    background: linear-gradient(90deg, #ffffff, #fff8b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 200, 0.2);
}
.gradient-text-yellow {
    background: linear-gradient(90deg, #fff8b7, #ffe79b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.2);
}
.tooshortFix {
padding-top:50px;
/*padding-bottom:800px;*/
min-height:95vh;
}
.navIcon {
width:100%;
max-width:40px;
margin:0 auto;
}
.gradient-border-bottom {
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(to right, rgba(72, 85, 99, 0.5), rgba(36, 41, 46, 0.8));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom center;
  margin:0 auto;
  padding:0;
}

.collection-item:hover {
    cursor: pointer;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;

}
.topnav .nav-link {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: Calibri !important;
}
body {
    background:#000000;
    /*  margin-bottom: 60px;*/
}
.mainContent {
    height: 100%;
}
.presetBtn {
height:100px;
width:150px;
font-size:50px;
font-weight:600
}
.liltxt {
    color:#ffffff !important;
    font-size:32px;
    padding-right:5px;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

    #overlay img {
        max-width: 90%;
        max-height: 90%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 8px;
    }

body.lightbox-open {
    overflow: hidden; /* Prevent scrolling when lightbox is open */
}

.list-group-item {
background-color:#000000;
color:#ffffff;
}
.formCont {
display:inline-block;
}

.toolsLauncher {
    position: fixed; /* Fix the element to the viewport */
    top: 0; /* Align it to the top of the page */
    left: 0; /* Align it to the left of the page */
    padding: 10px; /* Optional, for spacing around the content */
    z-index: 9999; /* Ensure it stays on top of other content */
}

#toolsLaunchBtn {
    font-size: 16px; /* Optional, for customizing the font size */
    color: #333; /* Optional, for customizing the text color */
    text-decoration: none; /* Remove default underline on the link */
    /*background-color: #f8f9fa;*/ /* Optional, for a light background */
    padding: 10px 15px; /* Optional, for padding around the button */
    border-radius: 5px; /* Optional, for rounded corners */
    border: 1px solid #ccc; /* Optional, for a border */
}

    #toolsLaunchBtn:hover {
        opacity: 1.0;
        border-color: #ffffff; /* Optional, for hover effect */
    }
.closeModalLnk {
color:#ffffff !important;
font-size:0.5em;
cursor:pointer;
}
.toolBtn {
width:100%;
max-width:400px;
}
.slideshow-container {
margin-left:5%;
}
.toolBtn svg {
    height: 20px;
    width: 20px;
}
.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease 5s;
}
#genImageFinal {
    width: 30%;
}
@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
    @media(min-width: 526px) {
        .seedLbl {
            /*margin-left: 16% !important;*/
            margin-left: 23% !important;
        }
}
    @media(max-width: 526px) {
        .centeronmobile {
            max-width: 100% !important;
            width: 100% !important;
            text-align: center !important;
        }

        .seedLbl {
            margin-left: 18% !important;
        }
        #genImageFinal {
            width: 100% !important;
        }
    }


.video-container {
    position: relative; /* Needed for absolute positioning of text */
    display: inline-block;
}
.countdown-number {
    background: linear-gradient(45deg, rgba(255, 20, 147, 1), rgba(125, 249, 255, 1));
    -webkit-background-clip: text;
    color: transparent;
}
#countdownNumbers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the text */
    font-weight: bold;
    z-index: 10; /* Ensures text is above the video */
    pointer-events: none; /* Prevents interaction with the text */

    font-size: 6rem; /* Adjust size as needed */
    font-weight: 700; /* Bold */
    font-family: 'Arial Black', sans-serif; /* Choose a standout font */
    background: linear-gradient(45deg, rgba(255, 20, 147, 1), rgba(255, 255, 0, 1), rgba(125, 249, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    display: inline-block; /* Ensures proper rendering */
    padding: 20px;
    margin:20px;
    border-radius:15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
#galleryHeader {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the text */
    font-weight: bold;
    z-index: 10; /* Ensures text is above the video */
    pointer-events: none; /* Prevents interaction with the text */

    font-size: 2.3rem; /* Adjust size as needed */
    font-weight: 700; /* Bold */
    font-family: 'Arial Black', sans-serif; /* Choose a standout font */
    background: linear-gradient(45deg, rgba(255, 20, 147, 1), rgba(255, 255, 0, 1), rgba(125, 249, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    display: inline; /* Ensures proper rendering */
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
   
}
.galleryHeaderMain {
width:100%;margin:0 auto;text-align:center;padding-bottom:15px;
}
.loadingCont {
    position: relative; /* Ensure it stays inside the parent */
}

#loadingIndicator {
    position: absolute;
    top: 200px;
    left: 100px;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 150px;
    display: none; /* Initially hidden */
    /*background-color: rgba(255, 255, 255, 0.8);*/ /* Optional: slight background */
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
}
#loadingIndicatorA {
    position: absolute;
    top: 300px;
    left: 100px;
    transform: translate(50%, 50%);
    width: 100px;
    height: 150px;
    display: none; /* Initially hidden */
    /*background-color: rgba(255, 255, 255, 0.8);*/ /* Optional: slight background */
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
}
#loadingIndicatorB {
    position: absolute;
    top: 450px;
    left: 2200px;
    transform: translate(50%, 50%);
    width: 100px;
    height: 150px;
    display: none; /* Initially hidden */
    /*background-color: rgba(255, 255, 255, 0.8);*/ /* Optional: slight background */
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
}
#loadingIndicatorC {
    position: absolute;
    top: 800px;
    left: 200px;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 150px;
    display: none; /* Initially hidden */
    /*background-color: rgba(255, 255, 255, 0.8);*/ /* Optional: slight background */
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
}
/* Scrollbar for Chrome, Safari, Edge */
.thumbnail-scroll::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: #222; /* Track (background) color */
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: #ff4500; /* Thumb (scroll handle) color */
    border-radius: 4px; /* Rounded corners */
}

    .thumbnail-scroll::-webkit-scrollbar-thumb:hover {
        background: #ff6347; /* Thumb color when hovered */
    }

/* Scrollbar for Firefox */
.thumbnail-scroll {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #ff4500 #222; /* Thumb color | Track color */
}


@media only screen and (max-width: 550px) {
    .trash-icon {
        display: none;
    }
    .collectionListCont {
        max-height: 200px !important;
        height: auto !important;
        /*border: solid 1px rgba(0, 0, 0, 0.3)*/
    }
}

.dislaimerTxt {
font-size:0.8em;
color: blue;
}
#isloading {
color:rgba(239, 239, 240,0.4);
}
.collectionListCont {
    height: 70vh;
    overflow: auto;
    overflow-x: hidden;
    padding-right:5px;
}
.navTabs .nav-link {
   color:aliceblue;
}
.delBtnCont {
    width: 48%;
    max-width: 100%;
    text-align: right;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.collection-item.active {
    background-color:rgba(0,0,0,0.6);
    border-color: #789b6f;
    border-radius: 2px;
}
.nav-tabs {
border-bottom:0 !important;
}
#collectionsList {
    border: 1px solid #71706e;
}
#privateCollectionsTab:hover {
    border-bottom: none !important;
}
#publicCollectionsTab:hover {
    border-bottom: none !important;
}
.describeText {
font-size:0.8rem;
margin-left:18px;
}
.custom-nav .nav-link {
    color: #0d0d0d;
    transition: color 0.3s ease;
    font-size:10px;
}

    .custom-nav .nav-link:hover {
        color: #ffffff !important; /* Bootstrap primary blue or your own custom color */
    }
.custom-nav .nav-link,
.custom-nav .btn-link {
    color: #1a1a1a;
    text-align: center;
    transition: color 0.3s ease;
    display: inline-block;
}

    .custom-nav .nav-link:hover,
    .custom-nav .btn-link:hover {
        color: #0d6efd; /* or any brand color */
        text-decoration: none;
    }

.custom-nav .navIcon {
    display: block;
    font-size: 1.4rem;
    /*margin-bottom: 4px;*/
}
.icon-wrapper {
  position: relative;
  display: block;
  width: 40px; /* adjust to your icon size */
  height: 40px;
}

.nav-icon {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
  z-index: 1;
  position: relative;
}

/* Gradient overlay on hover */
.icon-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6a11cb, #2575fc); /* dark violet-blue gradient */
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
  border-radius: 8px;
}

.nav-item:hover .icon-wrapper::after {
  opacity: 1;
}
.icon-wrapper {
margin:0 auto;
}
.token-counter {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #f1f1f1;
    transition: background-color 0.3s ease;
}

    .token-counter:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

.token-text {
    font-size: 0.95rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
#photoshootTokenCost {
    transition: opacity 0.3s ease;
    font-size: 1rem;
}
