/* Hex Calculator Stilleri */
.hex-calculator-container {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.calculator-description {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.hex-calculator {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calculator-section {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
}

.hex-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: end;
    justify-content: center;
    margin-bottom: 20px;
}

.result-display {
    min-height: 40px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.btn {
    min-width: 80px;
}

@media (max-width: 768px) {
    .hex-inputs {
        flex-direction: column;
        align-items: stretch;
    }
    .calculator-section {
        padding: 10px;
    }
} 