* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

h1 {
    padding-top: 5px;
    text-align: center;
}

.convertForm {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.resultDataConvert {
    background-color: #90EE90;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #228B22;
    font-weight: bold;
}

.resultDataConvert h2 {
    text-align: center;
    text-decoration: underline;
}

.hide {
    display: none;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}