#AccountdropdownMenuButton:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
}

#AccountdropdownMenuButton {
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {
    #account-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #account-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    #account-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.account-card {
    background-image: url('/path/to/bank-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    margin: 10px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    height: 200px; /* Ensure the card takes up full height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.account-card:hover {
    transform: scale(1.05);
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.account-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
}

.account-card-content h6 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.account-card-content p {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.account-card-content p.account-number::before {
    content: '\1F4B3';
}

.account-card-content p.balance::before {
    margin-right: 8px;
}

.account-number {
    font-size: 1.2rem;
    letter-spacing: 2px;
    word-wrap: break-word;
}

@media (max-width: 576px) {
    .account-number::after {
        content: '...';
    }
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: #0d6efd;
    background: #f1f8ff;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-content {
    text-align: center;
}

.upload-icon {
    font-size: 24px;
    color: #6c757d;
    margin-bottom: 10px;
}

.preview-image {
    width: 80px;
    height: 80px;
    display: none;
}


.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control-color {
    width: 60px;
    height: 38px;
    padding: 3px;
    border-radius: 6px;
    cursor: pointer;
}

.color-preview {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 12px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.color-value {
    font-family: monospace;
    font-size: 14px;
    color: #6c757d;
}
