/* ======================================
   DONATION FORM – CARD DESIGN
   ====================================== */

.vtc-donate-desc {
    color: #005800;
    font-size: 14px;
    background: #0080000d;
    border-left: 4px solid #008000;
    margin-top: 10px;
    padding: 4px 7px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 7px;
    margin-bottom: 20px;
}

#post-4588 h1{
    background: repeating-linear-gradient(33deg, #000000 0 0, #2d2c2c 21px 25px);
    padding: 5px;
    box-shadow: rgb(9 30 66 / .25) 0 1px 1px, rgb(9 30 66 / .13) 0 0 1px 1px;
    text-align: center;
    color: #fff;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.vtc-donate-card {
    margin-top: -25px;
    border-top-left-radius: 0;
    padding: 12px;
    background: #fff;
    box-shadow: rgb(9 30 66 / .25) 0 1px 1px, rgb(9 30 66 / .13) 0 0 1px 1px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.vtc-donate-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vtc-field label{
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vtc-inp{
    border: 1px solid #000 !important;
    padding: 11px 12px !important;
    outline: none;
    font-size: 14px;
    background: #fff !important;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.vtc-inp:focus,
.vtc-inp:hover{
    box-shadow: 0 0 7px #6200ee;
    border-color: #6200ee !important;
}

.vtc-donate-btn{
    margin-top: 6px;
    margin-bottom: 12px;
    padding: 12px;
    font-weight: 800;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-radius: 7px;
    background: #6200ee;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.vtc-donate-btn:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6200ee;
}


.vtc-donate-info{
  margin-top: 14px;
  padding-top: 12px;
  text-align: center;
  font-size: 13px;
  border-top: 1px dashed rgba(0,0,0,.15);
}

.vtc-donate-info span{
       margin-left: 12px;
}



/* ======================================
   DONOR WALL – KEEP AS IS
   ====================================== */

.vtc-wall-title{
    background: darkgreen;
    font-size: 18px;
    text-align: center;
    box-shadow: rgb(9 30 66 / .25) 0 1px 1px, rgb(9 30 66 / .13) 0 0 1px 1px;
    color: #fff;
    padding: 7px 10px;
    border-radius: 7px;
    font-weight: 600;
    margin-bottom: 29px;
}

.vtc-wall-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vtc-card{
 box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
   border-top: 2px solid #000;
  background: #fff;
}

.vtc-avatar img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-block;
}

.vtc-name{
  margin-top: 8px;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vtc-amt{
    display: inline-flex;
    margin-top: 6px;
    gap: 5px;
    line-height: 1;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    opacity: .9;
}

.vtc-status.confirmed {
    color: green;
    font-size: 8px;
    background: #00800017;
    border-radius: 5px;
    border: 1px solid green;
    padding: 3px 4px;
}

.vtc-status.pending {
    color: #B26A00;
    font-size: 8px;
    background: #FFF5D6;
    border: 1px solid #B26A00;
    border-radius: 5px;
    padding: 3px 4px;
}

.vtc-wall-loading,
.vtc-wall-empty{
  grid-column: 1 / -1;
  padding: 14px;
  opacity: .75;
}


/* ======================================
   RESPONSIVE
   ====================================== */

@media (max-width: 900px){
  .vtc-wall-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (max-width: 590px) {
    .vtc-wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 425px) {
    .vtc-wall-grid {
       display: flex;
       flex-direction: column;
    }
}


/* ===============================
   SUCCESS POPUP
   =============================== */

.vtc-success-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.vtc-success-overlay.active{
  opacity: 1;
  pointer-events: auto;
}

.vtc-success-modal{
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  animation: vtcPop .25s ease;
}

@keyframes vtcPop{
  from{ transform: scale(.9); opacity: 0; }
  to{ transform: scale(1); opacity: 1; }
}

.vtc-success-icon{
  font-size: 42px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.vtc-success-title{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.vtc-success-text{
  font-size: 14px;
  opacity: .8;
  margin-bottom: 14px;
}

.vtc-success-btn{
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  background: #6200ee;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}




.vtc-badge{
  font-size: 11px;
  background: #fff3cd;
  color: #856404;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  display: inline-block;
}

.vtc-pending{
  opacity: .7;
}


.vtc-loadmore-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}


.vtc-loadmore-box button{
    padding: 12px 14px !important;
    width: 40%;
    background: #6200ee;
    box-shadow: rgb(0 0 0 / .1) 0 1px 3px 0, rgb(0 0 0 / .06) 0 1px 2px 0 !important;
    transition: box-shadow 0.2s !important;
    font-size: 17px;
}

.vtc-loadmore-box button:hover{
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6200ee !important;
}


.vtc-quick-amounts {
  display: flex;
  gap: 10px;
  margin:0;
  flex-wrap: wrap;
}

.vtc-quick-amounts .amt-card {
  padding: 8px 14px;
  background: #f3f4f6;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  transition: 0.2s ease;
  font-size: 14px;
}

.vtc-quick-amounts .amt-card:hover {
  background: #e8e9eb;
}

.vtc-quick-amounts .amt-card.active {
  background: #6200ee;
  color: #fff;
  border-color: #6200ee;
}

.vtc-card.highlight {
  box-shadow: 0 0 15px rgba(98, 0, 238, 0.6);
  border: 2px solid #6200ee;
  transition: all 0.4s ease;
}

.vtc-card.fadeout {
  box-shadow: rgb(9 30 66 / .25) 0 4px 8px -2px,rgb(9 30 66 / .08) 0 0 0 1px !important;
  border-top: 2px solid #000 !important;
  
}

