#aluminum-profile-calculator {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

#aluminum-profile-calculator h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

#aluminum-profile-calculator label {
    display: block;
    margin-bottom: 8px;
    font-size: 1em;
}

#aluminum-profile-calculator input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#aluminum-calculate-btn {
    width: 100%;
    padding: 15px;
    background-color: #0073aa;
    color: white;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#aluminum-calculate-btn:hover {
    background-color: #005177;
}

#result {
    text-align: center;
    margin-top: 20px;
}

#result h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#aluminum-calculated-weight {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

#aluminum-calculate-btn {
    width: 100% !important; /* Butonu genişletmek için genişliği %100 yapıyoruz */
    padding: 15px !important; /* Butonun iç boşluğunu artırıyoruz */
    background-color: #0073aa !important; /* Mavi renk */
    color: white !important;
    font-size: 1.2em !important; /* Font boyutu */
    border: none !important;
    cursor: pointer !important;
    border-radius: 5px !important;
    transition: background-color 0.3s ease !important;
}

#aluminum-calculate-btn:hover {
    background-color: #005177 !important; /* Hover durumu */
}

