.pagination .page-item {
    margin-left: 0.5rem;
}

.pagination .page-item .page-link {
    width: 32px;
    height: 32px;
    background: #e5e5e5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
    background: #4a6cf7;
    color: #fff;
}

.radio-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    margin-right: 10px;
}

.radio input:checked ~ .radio-mark {
    border-color: #2196f3;
    background-color: #2196f3;
}

/* New styles for the image and radio button container */
.image-container {
    display: flex;
    align-items: center;
}

.image-container img {
    display: block;
    height: 6rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.radio-label {
    font-size: 16px;
    color: #000000;
}

/* Custom CSS for the ordered list */
.card-body ol {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 1.5rem;
}

.card-body ol li {
    position: relative;
    counter-increment: custom-counter;
    margin-bottom: 0.5rem;
}

.card-body ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: -1.5rem;
    font-size: 1rem;
    color: gray;
}

/* Circular Progress Bar Styles */
.progress-circle {
    width: 100px;
    height: 100px;
    position: relative;
    display: inline-block;
}

.progress-circle .progress-circle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-circle svg circle {
    fill: transparent;
    stroke: #d1393a;
    stroke-width: 10;
}

.bg-custom-image {
  background-image: url('../background.webp');
  background-size: cover;
  background-position: center;
}

.bg-red-wari {
    background: #DC0000;
}

.bg-black-wari {
    background: #322D2F;
}

.fs-8 {
    font-size: 12px;
}

.floating-image {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 1100px;
    height: auto;
    z-index: 1;
}

@media screen and (min-width: 1600px) {
    .floating-image {
        width: 1366px;
    }
}

@media screen and (min-width: 1920px) {
    .floating-image {
        width: 1800px;
    }
}

.mb-6 {
    margin-bottom: 70px;
}

@media screen and (min-width: 768px) {
    .object-image {
        position: relative;
        z-index: 9999;
    }
}

/* ===== Login tanpa background (footer tetap ada) ===== */
body.no-login-bg,
body.no-login-bg .main-wrapper,
body.no-login-bg .section,
body.no-login-bg .header,
body.no-login-bg .footer {
  background:#fff !important;
  background-image:none !important;
}

body.no-login-bg .bg-custom-image { background:none !important; background-image:none !important; }
body.no-login-bg .floating-image { display:none !important; }
body.no-login-bg .object-image { display:none !important; }
body.no-login-bg::before,
body.no-login-bg::after { content:none !important; display:none !important; }

body.no-login-bg .main-wrapper {
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
body.no-login-bg .section { flex:1 0 auto; }
body.no-login-bg .footer  { flex-shrink:0; }

body.no-login-bg .footer-top { 
  display: none !important; 
}
body.no-login-bg .floating-image { 
  display: none !important; 
}

body.no-login-bg .footer.bg-black-wari { 
  display: block !important; 
}

body.no-login-bg .min-vh-100 { 
  padding-bottom: 90px;
}

body.no-login-bg {
  height: 100%;
  overflow: hidden !important;
}

body.no-login-bg .bg-custom-image {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  overflow: visible !important;
}

body.no-login-bg .card {
  max-height: calc(100vh - 64px);
  overflow: auto;
  box-sizing: border-box;
}

body.no-login-bg .footer-top,
body.no-login-bg .floating-image { display:none !important; }

@media (max-height: 680px){
  body.no-login-bg{ overflow: auto !important; }
  body.no-login-bg .card{ max-height: none; }
}