body {
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #ffffff;
}

#mainDiv {
    display: flex;
    flex-direction: column;
    background-color: #e67e22;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    width: 60%;
    max-width: 800px;
}

#subDiv1 {
    display: flex;
    justify-content: space-between;
}

#User{
    margin-left: 10px;
}
.childDiv {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);
    background-color: #292929;
}

#Computer, #User {
    background-color: #4e342e;
}

h1 {
    margin: 10px 0;
    font-size: 26px;
    color: #d3d3d3;
}

.styled_hr {
    width: 100%;
    border: none;
    border-top: 2px solid #777;
    margin-bottom: 15px;
}

.display_image {
    height: 200px;
    width: 200px;
    border-radius: 12px;
}

#imagesDiv {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 10px;
    background-color: #222;
    border-radius: 12px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);
}

.image-button {
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.image-button:hover {
    transform: scale(1.1);
}

.images {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
}

#resultDiv {
    position: absolute;
    background-color: rgba(255, 165, 0, 0.9);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

#button1 {
    background-color: #c0392b;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

#button1:hover {
    background-color: #a93226;
    transform: scale(1.05);
}
