body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.input-section {
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

input:focus, select:focus {
    outline: none;
    border-color: #4CAF50;
}

.adjustment-info {
    margin-top: 8px;
    padding: 10px;
    background-color: #e8f5e9;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.adjustment-info p {
    margin: 5px 0;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

.results-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #4CAF50;
}

.results-section h2 {
    margin-top: 0;
    color: #333;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item span:first-child {
    font-weight: bold;
    color: #555;
}

.result-item span:last-child {
    color: #333;
}

/* Color coding for HH and LL values */
.hh-value {
    color: #d32f2f !important; /* Red color for HH values */
    font-weight: bold;
}

.ll-value {
    color: #388e3c !important; /* Green color for LL values */
    font-weight: bold;
}

.error-section {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #c62828;
    text-align: center;
}