/* File: css/style.css */
.conversion-calculator {
    max-width: 500px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.conversion-calculator h2 {
    text-align: center;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#calculate-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ff410c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#calculate-btn:hover {
    background-color: #e93410;
}

.results {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.result-item {
    margin-bottom: 10px;
}

.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #888;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    margin-left: 5px;
    cursor: help;
}