.auth-page .auth-side-wrapper {
    width: 100%;
    height: 100%;
    background-color:#f7971f;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center center;
    min-height: 150px;
}
.btn-primary{
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}
.btn-primary:hover{
    background-color: #2e2a2a;
    border-color: #2e2a2a;
}
.sidebar-brand img{
    max-height: 70px;
    margin-left: 40px;
}
.sidebar-header{
    background-color:#f7971f !important;
}
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span{
    background: #f2f2f2;
}
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title, .sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
    color: #f7971f;
}
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
    fill: #f7971f;
    color: #f7971f;
}
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
    fill: #f7971f;
    color: #f7971f;
}
#monthlySalesChart svg{
    background: transparent !important;
}
#monthlySalesChart path {
    fill: #f7971f !important;
}
#revenueChart svg {
    background: transparent !important;
}
.border-primary {
    border-color: #f7971f !important;
}
.text-primary{
    color: #f7971f !important;
}
.bg-primary{
    background-color: #f7971f !important;
}
.bg-secondary{
    background-color: #1a1a1a !important;
}
.total-count{
    text-align: end;
    margin-bottom: 30px;
}
#imagePreviewModal .modal-content {
    border-radius: 10px;
}

#imagePreviewModal .modal-header {
    background-color: #f0f0f0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
}

#imagePreviewModal .modal-body {
    text-align: center;
    padding: 20px;
}

#imagePreviewModal img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#imagePreviewModal .close {
    font-size: 30px;
    position: absolute;
    right: 15px;
    color: #000;
    opacity: 0.8;
}

#imagePreviewModal .close:hover {
    opacity: 1;
}
.circular-image-preview {
    position: relative;
    width: 100px; /* Set the desired width and height */
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #f0f0f0; /* Set a background color for the circular area */
}

.circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.eye-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.eye-icon i {
    font-size: 30px;
    color: #333;
}

.circular-image-preview:hover .eye-icon {
    opacity: 1;
}

.image-preview-container {
    text-align: center;
}

.image-preview {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    border-radius: 100%;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

.image-preview:hover {
    opacity: 0.7;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #007bff; /* Change to your primary color */
    cursor: pointer;
}

.click-text {
    display: none;
    font-weight: bold;
}

.image-preview:hover .click-text {
    display: inline;
}
.pagination{
    float: Right;
}