/* Your Custom CSS Goes here */
.payment-button {
    transition: all 0.3s ease;
    margin: 5px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
}

.payment-button.selected {
    background-color: #6f42c1 !important;
    border-color: #6f42c1 !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(111, 66, 193, 0.4);
    transform: scale(1.05);
}

.payment-button.selected:hover {
    background-color: #5a32a3 !important;
    border-color: #5a32a3 !important;
}

.payment-button i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.payment-label {
    font-weight: bold;
    font-size: 0.9rem;
}

.selected-methods {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.method-tag {
    display: inline-block;
    margin: 2px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
}