/* Navbar adjustments */
.navbar-nav .nav-link:hover {
    color: #007bff; /* Highlight color */
    text-decoration: underline; /* Optional: underline on hover */
}

/* Style for header with wide image */
.header-image-container {
    position: relative;
    width: 100%;
}

.header-image-container img {
    width: 100%;
    height: auto;
}

.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Adjust content below the header */
.container {
    margin-top: 100px; /* Adjust space below the header */
}

/* Dropdown styles */
.form-group {
    height: auto;
    width: 50%;
    margin: 0 auto;
}

#bank_name {
    height: 40px;
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Table Styling */
table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #f8f9fa;
    font-size: 1.1rem;
}

table td {
    font-size: 1rem;
    color: #333;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tbody tr:hover {
    background-color: #e9ecef;
}

#bank_name {
    height: 50px; /* Increase the height of the select box */
    font-size: 1.2rem; /* Increase the font size */
    line-height: 1.5; /* Adjust line height for proper vertical text alignment */
    padding: 10px; /* Add padding inside the select element */
    border-radius: 5px; /* Rounded corners for the dropdown */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    width: 100%; /* Make sure it spans the full width of the container */
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1rem;
    /* background-color: #444748; */
}

#cards_container {
    padding: 100px;
}

.card:hover {
    transform: scale(1.05); /* Slightly increase the size on hover */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}