
    /* Reusing your existing styles with cat-themed colors */
    .bmi-chart {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
    }
    
    .bmi-chart table {
        width: 100%;
    }
    
    .bmi-chart th {
        background-color: #6f42c1; /* Cat purple */
        color: white;
    }
    
    .progress-container {
        height: 30px;
        margin: 20px 0;
        background-color: #e9ecef;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .progress-bar {
        height: 100%;
        transition: width 0.5s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
    }
    
    .result-card {
        border-left: 5px solid #6f42c1; /* Cat purple */
        transition: all 0.3s ease;
    }
    
    .result-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .loading-spinner {
        display: none;
        width: 2rem;
        height: 2rem;
    }
    
    #catBmiForm.is-submitting .loading-spinner {
        display: inline-block;
    }
    
    #catBmiForm.is-submitting .submit-text {
        display: none;
    }
    
    /* BMI-specific styles */
    .bmi-underweight {
        background-color: #6f42c1; /* Purple */
    }
    
    .bmi-ideal {
        background-color: #28a745; /* Green */
    }
    
    .bmi-overweight {
        background-color: #fd7e14; /* Orange */
    }
    
    .bmi-obese {
        background-color: #dc3545; /* Red */
    }
    
    .weight-status {
        font-size: 1.2rem;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 5px;
        color: white;
    }
    
    .cat-color {
        color: #6f42c1;
    }
