span.accountBalance.showQBBalance0 {
    font-style: italic;
}

span.accountBalance.showQBBalance1 {
    font-weight: bold;
}

table.skaters img {
    height: 50px;
    width: auto;
    cursor: pointer;
}

img.home_avatar {
    max-height: 50px;
    width: auto;
    margin: 5px 5px 5px 0;
    border-radius: 25px;
}

/* Login Page Improvements */
.alert {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert-danger {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: linear-gradient(135deg, #51cf66, #40c057);
    border-left: 4px solid #28a745;
}

.btn {
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Form improvements */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}