    /* Authentication section  */
.login-system-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #007bff, beige);
}

.authentication-container  {
    display: flex;
    justify-content: center;
    width: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.form-section {
    width: 350px;
    padding: 40px;
    text-align: center;
}

.authentication-logo {
    width: 100px;
    margin-bottom: 20px;
}

.login-system-body h2 {
    color: #333;
    margin-bottom: 10px;
}

.login-system-body p {
    font-size: 14px;
    color: gray;
    margin-bottom: 20px;
}

.form-section input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.form-section button {
    width: 106.5%;
    padding: 10px;
    background:  gold;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.form-section button:hover {
    background:rgba(202, 174, 11, 0.993);
}



/* Authentication section-responsiveness */
@media screen and (max-width: 768px) {
    .authentication-container {
        display: flex;
        justify-content: center;
        width: 80%;
        max-width: 400px;
    }

    .form-section {
        width: 100%;
        padding: 20px;
    }

    .form-section input,.form-section button {
        width: 80%;
        font-size: 80%;
        padding: 10px;
    }
    
    
}


/* Admin dashboard */

.transaction-body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}
.transaction-navbar {
    background: linear-gradient(to right, #007bff, beige);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0%;
}
.logo{
    color: #ffc107; 
    font-size: 40px;
    border-bottom: 6px solid #ffc107;
}
    .dash{
    margin-left: 40%;
}
.nav-icons a {
font-size: 20px;
color: #ffc107;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
}

.nav-icons a:hover {
color: gold;
}

.nav-icons {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.hero{
    background: linear-gradient(to right, #007bff, beige);
    width: 100%;
    height: 530px;
    margin-top: -22px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5rem;
    
    
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card-content {
    display: flex;
    align-items: center;
    padding: 20px;
    flex-grow: 1;
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #007bff; /* Default color, overridden by specific card styles */
}

.transaction-card .feature-card-icon { color: #ffc107; } /* Warning yellow */
.task-card .feature-card-icon { color: #dc3545; }   /* Danger red */
.amount-card .feature-card-icon { color: #28a745; } /* Success green */
.users-card .feature-card-icon { color: #007bff; } /* Primary blue */


.feature-card-text {
    display: flex;
    flex-direction: column;
}

.feature-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feature-card-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.feature-card-footer {
    padding: 10px 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Background colors for footers */
.bg-warning { background-color: #ffc107; }
.bg-danger { background-color: #dc3545; }
.bg-success { background-color: #28a745; }
.bg-primary { background-color: #007bff; }


.transaction-container {
    padding: 2rem;
    margin-top: -120px;

}
.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}
.card-1{
    padding: 2rem;
    margin-top: 30px;    
}
.card-title {
    font-size: 3rem;
    font-weight: 600;
    border-left: 7px solid #ffc300;
    padding-left: 12px;
    margin-bottom: 1rem;
}
.search-bar {
    display: flex;
    margin-bottom: 1rem;
}
.search-bar input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}
.search-bar input:focus {
    border-color: #ffc300;
    box-shadow: 0 0 5px #ffc30033;
}
.refresh-btn {
    background-color: gold;
    color: white;
    border: 1px solid #ffc300;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-left: 1rem;
    cursor: pointer;
}
.refresh-btn:hover {
    background:rgba(202, 174, 11, 0.993);
}
#transaction-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-top: 2rem;
    table-layout: auto; /* allow flexible width */
}
#transaction-table th, td {
    padding: 0.75rem;
    text-align: left;
    white-space: normal; /* allow wrapping */
    word-break: break-word;
}
#transaction-table th {
    color: #0052cc;
    border-bottom: 2px solid #ffc300;
    font-size: 13.5px;

}
#transaction-table tr:nth-child(even) {
    background-color: #f0f4ff;
}
#transaction-table tr:hover {
    background-color: #eef2ff;
}
.table-responsive {
  overflow-x: auto;
  max-width: 100%;
}
.badge-success {
  background-color: #28a745;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  font-size: 0.75rem;
}
.badge-pending {
  background-color: #ffc107;
  color: black;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  font-size: 0.75rem;
}
.badge-failed {
  background-color: #dc3545;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  font-size: 0.75rem;
}
.error-box {
    margin-top: 1rem;
    color: #721c24;
    background-color: #fff3cd;
    border-left: 4px solid #ffc300;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.print-btn {
  background-color: #007bff;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.print-btn:hover {
  background-color: #0056b3;
}
