body {
    background-color: #465F71;
}

/* Main cards */
.card {
    border-radius: 16px;
}

/* Scanner input */
#registrationInput {
    font-size: 1.4rem;
    height: 60px;
}

/* Participant card */
.participant-card {
    transition: all 0.2s ease;
}

/* Recent scans */
.recent-scan-item:last-child {
    border-bottom: none !important;
}

/* Status badges */
.badge {
    letter-spacing: 0.5px;
}

/* Big action buttons */
.btn-lg {
    height: 60px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #298EB5;
    border: #298EB5;
}

.btn-primary:hover {
    background-color: #0E3946;
    border: #0E3946;
}

/* Dashboard cards */
.dashboard-card {
    transition: all 0.2s ease;
    border: none;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-titles {
    color: #FFF!important;
}

.dashboard-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}