a:hover {
    cursor: pointer !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
}

.is-invalid {
    border-color: #dc3545;
}

/* Add this if you want to highlight invalid fields */
.ng-invalid.ng-touched:not(form),
.ng-invalid.ng-dirty:not(form) {
    border-color: #dc3545;
}

.rlink {
    cursor: pointer;
}

.rounded-text {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
    overflow: hidden;
    border-radius: 50%;
    margin: auto;
}

/*.readonly-field {
    display: block;
    padding: 0.375rem 0.75rem;*/ /* same as .form-control */
    /*background-color: #f8f9fa;*/ /* light gray */
    /*border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 1rem;
    color:   #212529;
}*/
.readonly-field {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #212529;
    background-color: #f8f9fa; /* light gray */
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    min-height: 38px;
}

/* Card hover effect */
.stat-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        opacity: 0.9;
    }
