body {
    font-family: 'Baloo 2', cursive;
    text-align: center;
    background: linear-gradient(135deg, #f7bc82, #6f2e63);
    margin: 0;
    padding: 0;
}
.camera-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#camera {
    width: 300px;
    height: 225px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    background: black;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

h1 {
    color: #8a0222;
    margin-bottom: 5px;
}

p {
    color: #120335;
}

.upload-box {
    border: 3px dashed #062c2d;
    padding: 20px;
    border-radius: 20px;
    background: rgba(240, 155, 155, 0.7);
    margin: 20px 0;
    transition: 0.3s;
}

.upload-box:hover {
    background: rgba(189, 48, 48, 0.7);
    transform: scale(1.05);
}

.upload-box input {
    display: none;
}

.upload-box label {
    display: block;
    cursor: pointer;
    font-size: 18px;
    color: #1f124acf;
}

button {
    background: #9c260c;
    color: rgb(3, 10, 0);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #6a1704;
}

.result-card {
    margin-top: 20px;
    background: rgb(138, 138, 209);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    display: inline-block;
    width: 100%;
}

.images-container {
    display: flex;
    flex-direction: row;     /* Always arrange horizontally */
    justify-content: center; /* Center them on the page */
    align-items: center;     /* Align vertically */
    gap: 20px;               /* Space between images */
    margin-bottom: 15px;
    flex-wrap: nowrap;       /* Prevent wrapping */
}

.images-container img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}
