.gallary-wrap .img-big-wrap img {
    height: 450px;
    width: auto;
    display: inline-block;
    cursor: zoom-in;
}

.gallary-wrap .img-small-wrap .item-gallery {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    margin: 7px 2px;
    display: inline-block;
    overflow: hidden;
}

.gallary-wrap .img-small-wrap{
    text-align: center;
}

.gallary-wrap .img-small-wrap img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 4px;
    cursor: zoom-in;
}

/* Payment Dashboard Styles */
.payment-status-badge {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.status-completed {
    color: #fff;
    background-color: #198754;
}

.status-pending {
    color: #000;
    background-color: #ffc107;
}

.status-failed {
    color: #fff;
    background-color: #dc3545;
}

.status-processing {
    color: #fff;
    background-color: #0d6efd;
}

.status-cancelled {
    color: #fff;
    background-color: #6c757d;
}

.payment-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.payment-stat-card {
    border-radius: 0.5rem;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    color: white;
}

.payment-stat-card .numbers h5 {
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-detail-row {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.payment-detail-row:last-child {
    border-bottom: none;
}

.json-viewer {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
}

.filter-section {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.chart-container {
    position: relative;
    height: 300px;
}

.payment-timeline {
    position: relative;
    padding-left: 2rem;
}

.payment-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0d6efd;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #0d6efd;
}

.timeline-content {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}