#guaranteeForm .form-custom-input input{
    padding: 4px 10px;
    margin: 0;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-divider .section-divider-text {
  white-space: nowrap;
}

.section-divider::before {
  content: '';
  width: 50px; /* short line before */
  border-bottom: 1px solid #A8B2C4;
}

.section-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #A8B2C4;
}

#imagePreviewModal .btn-close {
    filter: invert(0) grayscale(100%) brightness(0);
}


.pending{
 color: red;
}
.verify{
  color: blue
}
.approve{
  color: green
}

.table td p {
    white-space: normal !important;
    word-break: break-word !important;
}





/* ============================================
   SWIPER CAROUSEL CUSTOM STYLING
   ============================================ */

/* Main Swiper Container */
.swiper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Swiper Wrapper */
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

/* Individual Slides */
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem 1rem;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    margin-top: -22px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 10;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.swiper-button-prev {
    left: 10px !important;
    right: auto !important;
}

.swiper-button-next {
    right: 10px !important;
    left: auto !important;
}

/* Simple text-based arrows - Override default Swiper arrows */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
    font-size: 28px !important;
    color: #344767 !important;
    line-height: 44px !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.swiper-button-prev::after {
    content: '‹' !important;
}

.swiper-button-next::after {
    content: '›' !important;
}

.swiper-button-disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Pagination Dots */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.swiper-pagination-bullet:hover {
    opacity: 0.75;
    transform: scale(1.2);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #344767;
    transform: scale(1.3);
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

/* For use in tables */
td .swiper {
    max-width: 500px;
    margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
        margin-top: -18px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px !important;
        width: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Loading state */
.swiper-slide-loading {
    background: #f0f0f0;
}

/* Ensure no double arrows or extra content */
.swiper-button-next svg,
.swiper-button-prev svg,
.swiper-button-next img,
.swiper-button-prev img {
    display: none !important;
}