﻿/* styles.css */
.loading-content {
    text-align: center;
    display:none;
}
.loading-bar {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 8px solid #ddd;
    border-top: 8px solid #3498db;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
}
.loading-text {
    font-size: 10px;
    font-weight: bold;
    color: #333;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*alert message*/
.DialogBox {
    width: 210px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

.ui-dialog-content {
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.alert {
    --bs-alert-margin-bottom: 0rem;
}

