        
        .salary-container {
            max-width: 1000px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .content {
            padding: 25px;
        }
        
        .input-section {
            margin-bottom: 25px;
            background: #f5f9ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #1976d2;
        }
        
        .input-group {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #0d47a1;
        }
        
        input, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        input:focus, select:focus {
            border-color: #1976d2;
            outline: none;
            box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
        }
        
        .results {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .result-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            border-top: 4px solid #1976d2;
        }
        
        .result-card h3 {
            color: #0d47a1;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .result-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0d47a1;
        }
        
        .tax-year-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .year-btn {
            padding: 10px 20px;
            background: #e3f2fd;
            color: #0d47a1;
            border: 2px solid #bbdefb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .year-btn.active {
            background: #0d47a1;
            color: white;
            border-color: #0d47a1;
        }
        
        .slabs-info {
            margin-top: 30px;
            background: #f0f7ff;
            border-radius: 10px;
            padding: 20px;
        }
        
        .slabs-info h3 {
            color: #0d47a1;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .slabs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .slabs-table th, .slabs-table td {
            padding: 10px;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }
        
        .slabs-table th {
            background-color: #0d47a1;
            color: white;
        }
        
        .slabs-table tr:nth-child(even) {
            background-color: #f5f9ff;
        }
        
        .slabs-table tr:hover {
            background-color: #e3f2fd;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 14px;
            border-top: 1px solid #eee;
        }
        
        @media (max-width: 768px) {
            .results {
                grid-template-columns: 1fr;
            }
            
            .slabs-table {
                font-size: 0.8rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            header {
				padding: 10px;
			}
			
			.content {
				padding: 10px;
			}
			
			.input-section {
				padding: 5px;
			}
			
			.slabs-table {
                display: block;
                overflow-x: auto;
            }
			
			.slabs-info {
				padding: 2px;
			}
            
            .tax-year-toggle {
                flex-direction: row;
            }
			
			.result-card {
				padding: 2px;
				min-width: 150px;
			}
			
			.result-value {
				font-size: 1rem;
				font-weight: 700;
			}
			
			.slabs-table th, .slabs-table td {
				padding: 2px;
			}
        }