
    .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;
    }
    
    .dosage-level {
        font-weight: bold;
    }
    
    .safe { color: #28a745; }
    .caution { color: #ffc107; }
    .warning { color: #fd7e14; }
    .danger { color: #dc3545; }
    
    .product-card {
        transition: transform 0.3s;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
    
    .symptom-item {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    
    .action-alert {
        border-radius: 8px;
    }
    
    .pill-icon {
        width: 30px;
        height: 30px;
        background-color: #0d6efd;
        border-radius: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 8px;
    }
