
    /* Main styles */
    .dosage-chart {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
    }
    
    .dosage-chart th {
        background-color: #0d6efd;
        color: white;
    }
    
    .result-card {
        border-left: 5px solid #0d6efd;
    }
    
    /* Dog size indicators */
    .size-indicator {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: bold;
        margin-left: 8px;
    }
    
    .size-small { background-color: #6f42c1; color: white; }
    .size-medium { background-color: #fd7e14; color: white; }
    .size-large { background-color: #343a40; color: white; }
    
    /* Status indicators */
    .dosage-level {
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 5px;
    }
    
    .safe { background-color: #28a745; color: white; }
    .caution { background-color: #ffc107; color: black; }
    .warning { background-color: #fd7e14; color: white; }
    .danger { background-color: #dc3545; color: white; }
    
    /* New additions for improved UI */
    .unit-toggle-btn {
        cursor: pointer;
        color: #0d6efd;
        font-weight: bold;
    }
    
    .dosage-visual {
        height: 30px;
        background-color: #e9ecef;
        border-radius: 15px;
        overflow: hidden;
        margin: 15px 0;
    }
    
    .dosage-visual-fill {
        height: 100%;
        transition: width 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
    }
