
#scale{
    width: 80px;  
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}
#scaleY{
    width: 80px;  
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}
#dimensionsReel{
    width: 80px;  
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}
#dimensionsMaquette{
    width: 80px;  
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacement entre les inputs */
}

.input-group label {
    
    min-width: 120px; /* Ajuste la largeur du label pour l'alignement */
}

.input-group input {
    flex: 1;
    padding: 6px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #ddd; /* Contour bleu */
    background-color: white; /* Fond blanc */
    transition: border-color 0.3s ease-in-out; /* Animation fluide au focus */
}

.button-container {
    width: 400px; 
}


.logo-header img {
    display: block;
    height: 45px;
    margin-left: 10px;
}
.mode-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mode-selection button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
}


#processGeoTIFF {
    position: relative;
    margin-top: auto;
}
#btnCascade{
    border: 2.5px solid #B5594D; /* Contour bleu */
    background-color: white; /* Fond blanc */
    height: 120px;
    color: black;
    margin-top: auto;
    background-image: url('../src/img/logo/cascade.png'); /* Remplacez par l'URL de votre image */
    background-size: cover; /* Ajuste l'image pour couvrir tout le bouton */
    background-position: center; /* Centre l'image */
}
#btnSuperposition{
    border: 2.5px solid #B5594D; /* Contour bleu */
    background-color: white; /* Fond blanc */
    height: 120px;
    color: black;
    background-image: url('../src/img/logo/superposition.png'); /* Remplacez par l'URL de votre image */
    background-size: cover; /* Ajuste l'image pour couvrir tout le bouton */
    background-position: center; /* Centre l'image */
}
#btnCascade:hover{
    border: 2.5px solid #B5594D; /* Contour bleu */
    background-color: #B5594D; /* Fond blanc */
    height: 120px;
    color: white;
    
}

#btnSuperposition:hover{
    border: 2.5px solid #B5594D; /* Contour bleu */
    background-color: #B5594D; /* Fond blanc */
    height: 120px;
    color: white;
}
