body {
    font-family: Arial, sans-serif;
    background-color: #fdfcf9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 600px;
}

h1 {
    color: #f99c49;
    font-size: 2rem;
    margin-bottom: 20px;
}

.image-box {
    width: 100%;
    height: 300px;
    border: 2px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
}

.load-images {
    background-color: #d1e4df;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#detectButton {
    background-color: #f99c49;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.result {
    margin-top: 20px;
    color: #333;
    font-size: 1rem;
}