﻿
.text-uppercase input {
    text-transform: uppercase;
}

/* Ensure floating label (`e-float-text`) remains normal case */
.text-uppercase .e-float-text {
    text-transform: none !important;
}

/* Apply lowercase only to the input field, NOT the floating label */
.text-lowercase input {
    text-transform: lowercase !important;
}

/* Ensure floating label (`e-float-text`) remains normal case */
.text-lowercase .e-float-text {
    text-transform: none !important;
}


.dark-toast {
    background-color: #333 !important; /* Dark background */
    color: #fff !important; /* Light text */
    border-left: 5px solid #ffcc00 !important; /* Accent color */
}

    .dark-toast .e-toast-content {
        color: #fff !important;
    }

    .dark-toast .e-toast-title {
        font-weight: bold;
        color: #ffcc00 !important; /* Highlight title */
    }

    .dark-toast .e-toast-message {
        color: #ddd !important;
    }

    .dark-toast .e-toast-progress {
        background-color: #ffcc00 !important; /* Progress bar color */
    }
.e-spin-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 15000 !important;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0s;
}

.e-spin-inner {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Apply animation when the button text changes to "Copied" */
.copied-animation {
    background-color: #28a745; /* Green color for copied */
    color: white;
    animation: changeTextColor 1s ease-in-out;
}

/* Keyframes for the color change effect */

@keyframes changeTextColor {
    0% {
        background-color: #28a745;
        color: white;
    }

    50% {
        background-color: #155724; /* Darker green */
        color: white;
    }

    100% {
        background-color: #28a745;
        color: white;
    }
}