/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Card Styling */
.card {
    border-radius: 10px;
    padding: 20px;
}

/* Heading Styles */
h1, h2, h3 {
    text-align: center;
    font-weight: bold;
}

/* Form Elements */
.form-control, .form-select {
    border-radius: 5px;
}

/* Buttons */
.btn-success, .btn-primary, .btn-danger, .btn-warning {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
}

/* Table Styling */
.table {
    text-align: center;
}

.table-hover tbody tr:hover {
    background-color: #e9ecef;
}

.table-primary {
    background-color: #007bff;
    color: white;
}

/* QR Code Display */
#qrcode {
    margin-top: 20px;
    text-align: center;
}

#qrcode canvas {
    border: 3px solid #007bff;
    padding: 10px;
    border-radius: 10px;
}

.qrcodelist{
    width:50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .form-control, .form-select {
        font-size: 14px;
    }
}
