﻿body {
}


.card-info {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    width: 300px;
    display: inline-block;
    vertical-align: top;
}
/* Style for the edit and delete buttons */
.card-info-buttons {
    margin-top: 10px;
}

.btn {
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
}

.btn-edit {
    background-color: #007bff;
    color: #fff;
}

.btn-delete {
    background-color: #dc3545;
    color: #fff;
}

.name{
    font-size:15px;
}
.error-label {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999;
    display: none;
}

#loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btnViewProduct {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 4px 19px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    width: 105px;
}

    .btnViewProduct:hover {
        background-color: #45a049; /* Darker green */
    }

.btnProductDelete {
    background-color: indianred; /* Green */
    border: none;
    color: white;
    padding: 4px 19px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
    width: 105px;
}

.shiftallproducts {
    margin-top: 102px;
}


/*Complaint Form*/
.message-label {
    display:none;
    color: black;
    font-size: 18px;
    margin-top: 5px;
}

#user-info {
    margin-top: 20px;
    display: none;
}

#user-form-info {
    margin-top: 20px;
    display: none;
}
#userbankdetails-info {
    margin-top: 20px;
    display: none;
}

#GetBankInfo {
    margin-top: 20px;
    display: none;
}


#userspecificaddress{
    display:none;
}



@media (max-width: 575.98px) {
    .list-group{
        flex-direction:row;
        margin-right:-47px;
    }
    #user-info {
        margin-top: 107px;
        margin-left: -65px;
    }

    #user-form-info {
        margin-top: 107px;
        margin-left: -70px;
    }

    #userbankdetails-info {
        margin-top: 107px;
        margin-left: -70px;
    }

    #GetBankInfo{
        margin-left:-45px;
    }

    #GetBankInfo th, td {
        font-size: 6px;
    }

    #address-container {
        margin-top: 107px;
        margin-left: -70px;
    }

    #userspecificaddress {
        margin-top: 107px;
        margin-left: -90px;
    }

    #loader {
        top: 50%;
        left: 45%;
        width: 50px;
        height: 50px;
    }
}