/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Image Container */
.image-container {
    width: 400px;
    height: 700px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #222;
    margin-bottom: 20px;
}

#latestImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Container */
/* Form Container */
.form-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensures the form spans the container's width */
    max-width: 600px; /* Optional: Limit the maximum width */
    margin: 0 auto; /* Center the form container */
    max-width: 400px;
}

#textInput {
    flex-grow: 1; /* Makes the input take up as much space as possible */
    padding: 10px;
    border-radius: 50px;
    border: 1px solid white;
    background-color: black;
    color: white;
    outline: none;
    margin-right: 10px; /* Space between input and button */
    height: 35px;
}

#submitButton {
    border-radius: 50px;
    background-color: black;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white; /* Explicitly define the border */
    outline: none; /* Remove default focus outline */
    box-shadow: none; /* Remove any box-shadow */
}

#submitButton:hover {
    background-color: #ccc;
    box-shadow: none; /* Ensure hover doesn't add shadows */
}

#submitButton:focus {
    outline: none; /* Remove focus outline */
    box-shadow: none; /* Prevent focus styles */
}

.updates-Section {
text-align: left;
}

.icon {
    font-size: 16px;
}
