body {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: white;
}

.header {
    background-color: white;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    margin-right: 15px;
}

.notification {
    padding: 10px;
    background-color: #ffe0e0;
    border: 1px solid #f5b6b6;
    border-radius: 5px;
    margin-left: 15px;
}

.notification p {
    margin: 5px 0;
}

.title {
    text-align: center;
    margin: 20px 0;
    color: white;
    font-weight: 600;
}


.title2 {
    text-align: center;
    margin: 20px 0;
}

.predictcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
 
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.rest-button {
    padding: 10px 20px;
    border: none;
    background-color: #ffb3b3;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.rest-button:hover {
    background-color: #ff9999;
}

.inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 300px;
}

.feature-label {
    margin-bottom: 15px;
    position: relative;
}

.feature-label label {
    display: block;
    margin-bottom: 5px;
}

.feature-label input {
    width: calc(100% - 30px);
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.feature-label input:required {
    border: 2px solid pink;
}

.tooltip {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff66b2;
    color: #fff;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    z-index: 100;
}

.tooltip:hover {
    background-color: #ff3385;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #fff;
    color: #333;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    border: 1px solid #ddd;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 16px;
}

.explanation {
    margin: 20px 0;
    text-align: center;
}

.bouton-3d {
    display: block;
    width: 200px;
    padding: 10px;
    border: none;
    background-color: #ff66b2;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
}

.bouton-3d:hover {
    background-color: #ff3385;
}

.result {
    text-align: center;
    margin-top: 20px;
}

.algorithm-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}

.algorithm-button {
    padding: 10px 20px;
    border: none;
    background-color: #ff66b2;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    text-align: center;
    flex: 1 1 calc(25% - 10px);
}

.algorithm-button:hover {
    background-color: #ff3385;
}

.upload-section {
    text-align: center;
    margin-top: 20px;
}

.upload-section input[type="file"] {
    display: none;
}

.upload-section label {
    display: block;
    width: 200px;
    padding: 10px;
    border: 2px solid #ff66b2;
    background-color: #fff;
    color: #ff66b2;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
}

.upload-section label:hover {
    background-color: #ff66b2;
    color: #fff;
}
