.category-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-left: 10px solid;
}

.category-number {
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}

.category-text {
    flex: 1;
}

.category-text h5 {
    margin-bottom: 5px;
    font-weight: bold;
}

.category-text p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
}

.category-1 {
    border-left-color: #28a745;
}

.category-1 .category-number {
    background: #28a745;
}

.category-2 {
    border-left-color: #ff9800;
}

.category-2 .category-number {
    background: #ff9800;
}

.category-3 {
    border-left-color: #dc3545;
}

.category-3 .category-number {
    background: #dc3545;
}

.category-4 {
    border-left-color: #673ab7;
}

.category-4 .category-number {
    background: #673ab7;
}

.category-5 {
    border-left-color: #17a2b8;
}

.category-5 .category-number {
    background: #17a2b8;
}

.acct-body {
    background-color: #0a1521;
    /* Dark background */
}

.account-banner {
    background: #0a1521;
    /* Matching the original dark background */
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 50px auto;
    flex-wrap: wrap;
}

.bank-logo img {
    max-width: 60px;
    margin-right: 15px;
}

.account-details {
    flex: 1;
    text-align: left;
}

.account-number {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.temporary-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.church-name {
    font-style: italic;
    font-weight: bold;
    font-size: 18px;
}


.events-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
}
.events-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.events-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}
.event-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}
.event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.event-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.event-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}
.event-description {
    font-size: 1rem;
    line-height: 1.5;
}

.gallery-btn {
    background: #ffffff;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .gallery-btn:hover {
    background: #ddd;
  }
  
  .gallery-modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 8%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.9);
  }
  
  .gallery-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .gallery-content img {
    width: 300px;
    height: auto;
    border-radius: 10px;
  }
  
  .gallery-modal .close {
    position: absolute;
    top: 10px;
    right:10px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
  }
  