.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.text-primary {
    color: #0d6efd !important;
}

.qr-code-container {
    background-color: #059669;
    padding: 1rem;
    border-radius: 12px;
}

.qr-code {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
}

.list-arrow {
    list-style: none;
    padding-left: 0;
}

.list-arrow li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.list-arrow li:last-child {
    margin-bottom: 0;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.btn-register {
    background-color: #0d6efd;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: #0b5ed7;
    color: white;
}