/* --- General Body Styling --- */
body
{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
}

/* --- Heading Styling --- */
h1
{
    color: #333;
    text-align: center;
}

/* --- Main Content Container --- */
.container
{
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

/* --- Form Element Styling --- */
input, button
{
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* --- Button Specifics --- */
button
{
    background-color:  #152642;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

button:hover
{
    background-color:#0A1A2F;
}

/* --- Result Display Area --- */
.info
{
    margin-top: 20px;
    text-align: left;
    line-height: 1.7;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.info h3
{
    text-align: center;
    margin-top: 0;
    color: #333;
}

.info img
{
    max-width: 120px;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* --- Result Grid Layout --- */
#result_info
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}