.tcs-container {
    background-color: white;
    /*border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	*/
    /*width: 100%;
    max-width: 500px;*/
    margin: 0 0;
    overflow: hidden;
}

.tcs-container table {
    width: 70%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.tcs-container table, 
.tcs-container th, 
.tcs-container td {
    border: 1px solid #ddd;
}

.tcs-container th {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
}

.tcs-container td {
    padding: 10px;
}


.tcs-header {
    background: linear-gradient(90deg, #5a67d8, #9f7aea);
    color: white;
    padding: 25px;
    text-align: center;
}

.tcs-header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.tcs-header p {
    opacity: 0.9;
}

.tcs-calculator-body {
    padding: 25px;
	padding-bottom: 50px;
}

.tcs-input-group {
    margin-bottom: 20px;
    position: relative;
}

.tcs-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

.tcs-input-icon {
    position: absolute;
    left: 15px;
    top: 40px;
    color: #718096;
}

.tcs-container input[type="number"] {
    width: 120px;
    padding: 5px;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    font-size: 18px;
    transition: border-color 0.3s;
}

.tcs-container input[type="number"]:focus {
    outline: none;
    border-color: #667eea;
}

.tcs-tip-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

@media (min-width: 480px) {
    .tcs-tip-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .tcs-tip-options {
        grid-template-columns: repeat(5, 1fr);
    }
}

.tcs-tip-option {
    position: relative;
}

.tcs-tip-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tcs-tip-option label {
    display: block;
    padding: 12px;
    background-color: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s;
}

.tcs-tip-option input[type="radio"]:checked + label {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

.tcs-tip-option label:hover {
    background-color: #edf2f7;
}

.tcs-results {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.tcs-result-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
}

.tcs-result-line:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tcs-result-label {
    color: #4a5568;
    font-weight: 600;
}

.tcs-result-value {
    font-weight: 700;
    color: #2d3748;
    font-size: 18px;
}

.tcs-total .tcs-result-value {
    color: #667eea;
    font-size: 22px;
}

.tcs-footer {
    text-align: center;
    padding: 20px;
    color: #718096;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
}

.tcs-highlight {
    color: #667eea;
    font-weight: 600;
}