/* Global Styles */


.containeeerr {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    background:rgb(211, 209, 209);
    margin-top:170px;  
    width: 60%;  /* Réduire la largeur du conteneur */
    margin-left: auto;
    margin-right: auto; /* Centrer le conteneur */
}

h1 {
    color: #000000;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 5px;
    text-align: left;
}

.label22{
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: red;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: black;
}

.calculbtn {
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calculbtn:hover {
    background-color: #0056b3;
}



.result-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-height: 100vh;
}

/* Carte de résultat */
.result-card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

/* Effet au survol de la carte */
.result-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Titre du résultat */
.result-title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Description du résultat */
.result-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 20px;
}

/* Section du câble */
.result-section {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    background-color: #e1f7d5;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

strong {
    color: #2d6a4f;
}

/* Ajout de marges et de padding autour des éléments */
p {
    margin: 10px 0;
    color:#000000;
}
p2 {
    margin: 25px 0;
    color:white;
}
p4 {
    margin: 30px 0;
    color:white;
}
/* Mise en page centrée avec des espacements */
.center {
    text-align: center;
}

@media only screen and (max-width: 767px) {

.containeeerr {
    background:black;
    margin-top:140px;  
    width: 90%;  /* Réduire la largeur du conteneur */
    margin-left: auto;
    margin-right: auto; /* Centrer le conteneur */
}
}