/* Set full height and remove default margins */
html, body {
    height: 100%;
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Container for centering the content */
.container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Styling for the image placeholder */
.image-placeholder {
    width: 836px;
    height: 461px;
    border: 5px solid white;
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Close button styling */
#close-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    display: none;
}

#close-image:hover {
    background: red;
    color: white;
}

/* Styling for the input box */
#unified-input {
    margin-top: 20px;
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border: 2px solid white;
    background: black;
    color: white;
    text-align: center;
    outline: none;
    border-radius: 5px;
}

/* Styling for the enter button */
#submit-input {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#submit-input:hover {
    background: #9a00c9;
    color: white;
}

/* Styling for the result message */
#result-output {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff; /* Default to white */
}

/* Footer link styling */
.footer {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer a:hover {
    color: #9a00c9;
}