
#generateInput::placeholder {
    color: black;
}

#promptOutput::placeholder {
    color: black;
}

.slider-container {
    margin-top: 10px;
    width: 250px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); /* Lighter shadow for better visibility on white */
    color: black; /* Text color set to black */
}

input[type="range"] {
    width: 100%;
    appearance: none;
    background: transparent;
    outline: none;
}

    /* Custom range slider styling */
    input[type="range"]::-webkit-slider-runnable-track {
        background: orange; /* Yellow track */
        height: 8px;
        border-radius: 5px;
    }

    input[type="range"]::-webkit-slider-thumb {
        appearance: none;
        width: 20px;
        height: 20px;
        background: red; /* Orange thumb */
        border-radius: 50%; /* box to circle */
        cursor: pointer;
        margin-top: -6px;
        box-shadow: 0px 0px 2px rgba(255, 87, 34, 0.8);
    }

.age-value {
    font-size: 22px;
    font-weight: bold;
    color: black; /* Orange color for age value */
    margin-top: 10px;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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%;
}

body {
    margin-bottom: 60px;
    color: black;
    background: white/* Set background color to black #282c34*/
}

.form-text{
    height: 100%;

}
.contact-text {
    font-family: 'Courier New', Courier, monospace; /* Change to a different font */
    color: #aaaaaa; /* Slightly darker color than the default */
    margin-top: 20px; /* Add top margin */
    font-size: 18px; /* Adjust font size if needed */
}

.input-group {
    display: flex; /* Align inputs in a single line */
    justify-content: center; /* Center the inputs */
    margin: 20px 0; /* Add margin for spacing */
}

.hero-title {
    text-align: center;
    color: lightblue;
    border: 4px solid black;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    margin-top: 30px;
    background-color:black;
    color: white;
}

.rotating {
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    animation: rotate 3s linear infinite; /* Apply the rotation animation */
}

@keyframes rotate {
    from {
        transform: rotate(0deg); /* Start from 0 degrees */
    }

    to {
        transform: rotate(360deg); /* Rotate to 360 degrees */
    }
}

/*Welcome Page CSS*/
.main-text {
    background: linear-gradient(135deg, #b22222, #000000); /* Red to black gradient */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text color transparent */
}

.hero-btn {
    text-align: center;
    color: black;
    background-color: white;
    box-shadow: 0px 0px 5px black;
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 5px;
    font-size:20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    width:100%;
}

    .hero-btn:hover {
        background-color: black;
        color: white;
        box-shadow: 0px 0px 5px blue;
    }


.form-select {
    
    cursor: pointer;
}
.center-container {
    text-align: center;
}

.form-select-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}


.text-area::placeholder {
    color: black; /* Placeholder text color */
}

.text-area {
    color: black; /* Text color */
    font-family: 'Garamond', serif; /* Font family */
    font-size: 22px; /* Font size */
    background-color: #ccc; /* Background color */
    padding: 10px; /* Padding */
    border: 1px solid black; /* Border */
    border-radius: 13px; /* Border radius */
    width: 100%; /* Width */
    min-height: 200px; /* Height */
    margin: 20px auto; /* Margin */
    display: block; /* Display */
}


.loading-status img {
    width: 300px; /* Set the width of the loading GIF to 50% of its original size */
}



.Main-Tool {
    background-image: url("../Images/ToolsBG.png"); /* The image used */
    background-color: #cccccc; /* Used if the image is unavailable */
    min-height: 100vh; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}
.custom-file-upload {
    display: inline-block; /* Ensures that the label behaves like an inline element */
    border: 2px solid white; /* White border */
    border-radius: 5px; /* Optional: rounded corners */
    padding: 5px; /* Optional: space between the border and the image */
    background-color: transparent; /* Optional: background color */
}

    /* Optional: Adjust the image size to fit within the label */
    .custom-file-upload img {
        max-width: 100%; /* Ensure the image is responsive */
        height: auto; /* Maintain aspect ratio */
    }

.Style-Main {
    min-height: 100vh;
    background-color: black;
}

.custom-file-upload {
    display: inline-block;
    cursor: pointer;
}

    .custom-file-upload img {
        width: 100px; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
    }

.bg-black {
    background-color: black;
}
@media (max-width: 768px) {
    .model-cards {
        overflow-x: scroll;
    }
    .first-card{
        margin-left: 100px !important;
    }
}
.voicesTable {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voicesTable .col {
    padding: 10px; /* Adjust as needed */
}
.voicesTable {
    background-color: #212529; /* Darker background for the row */
    border-radius: 0.5rem; /* Rounded corners */
    padding: 10px; /* Padding around the row */
    margin-bottom: 10px; /* Space between rows */
}

.voicesTable:hover {
    background-color: #343a40; /* Change background color on hover for better interactivity */
}
