﻿body {
    background-color: #E6D4B8;
}
.inputclass {
    width: 100%;
    height: 37px;
    padding-left: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: Arial;
    font-size: small;
}
#overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
}

.btn-primary {
    color: #fff;
    background-color: #847059;
    border-color: #847059;
}
.btn-primary:hover {
    color: #fff;
    background-color: #847059;
    border-color: #847059;
}
    .btn-primary:active {
        background-color: #17A1A8; /* Darker shade for active state */
        border-color: #17A1A8; /* Darker shade for active state */
    }
.btn-primary:disabled {
    color: #fff;
    background-color: #847059;
    border-color: #847059;
}
    .btn-primary:focus {
        background-color: #847059; /* Keep the same color on focus */
        border-color: #847059; /* Keep the same border color on focus */
    }
.btn-info {
    color: #fff;
    background-color: #808080;
    border-color: #808080;
}
.btn-info:hover {
    color: #fff;
    background-color: #808080;
    border-color: #808080;
}
    .btn-info:active {
        background-color: #6c6c6c; /* Darker shade for active state */
        border-color: #6c6c6c; /* Darker shade for active state */
    }
    .btn-info:focus {
        background-color: #808080; /* Keep the same color on focus */
        border-color: #808080; /* Keep the same border color on focus */
    }

#toast1-container {
    position: fixed;
    top: 20px;
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast1 {
    min-width: 250px;
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.5s forwards, fadeOut 0.5s ease-out 3s forwards;
}

    .toast1.success {
        background: #28a745;
    }

    .toast1.error {
        background: #dc3545;
    }

    .toast1 .progress {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, 0.7);
        animation: progress 3s linear forwards;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0;
    }
}


