
body {
    font-family: Arial, sans-serif;
    /*
	background-color: #f8f9fa;
	*/
}

#main{
	margin-top: 10px;
}

.navbar {
    background-color: #3d7295 !important;
}

.navbar .nav-link {
    color: white !important;
}

.footer {
    background-color: #3d7295;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-title a {
    color: #3d7295;
    text-decoration: none;
}

.card-title a:hover {
    text-decoration: underline;
}



.bank-logo{
	max-width: 100px;
}
.payment-group {
	margin-bottom: 20px;
}
.payment-option {
	margin-bottom: 10px;
}
.payment-logo img {
	height: 50px; /* Hoặc kích thước phù hợp với bạn */
	width: auto;
}


.payment-grid {
	margin: 20px;
}

.payment-grid button{
	border: none;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.grid-item {
	text-align: center;
	position: relative;
}

.grid-item img.bank-logo {
	width: 100%;
	max-width: 100px;
	transition: transform 0.3s ease;
}

.grid-item:hover img.bank-logo {
	transform: scale(1.1);
}

.bank-name {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	background-color: #000;
	color: #fff;
	padding: 5px;
	border-radius: 5px;
	font-size: 0.9rem;
}

.grid-item:hover .bank-name {
	display: block;
}

.cl_registered{
	font-weight: bold;
}
