#bogi-brand-form {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif; /* font family */
    font-size: 16px; /* font size */
    height: 48px; /* height matching the design */
}
#bogi-analysis-results {
    margin-top: 20px;
}
#bogi-brand-form .row {
    display: flex;
    align-items: center; /* Centers the input and button vertically */
    justify-content: flex-start; /* Aligns them at the start of the container */
    width: 100%; /* Ensures the row stretches across the container */
}

#bogi-brand-form input {
    margin-right: 10px; /* Adds space between input and button */
    padding: 10px;
    font-size: 16px;
    width: 440px; /* Adjust width as needed */
}

#bogi-brand-form button {
    flex-grow: 1; /* Makes the button take up the remaining space */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #467FF7;
    border-color: #467FF7;
}

/* Size of Prize Explanation */
#size-of-prize-explanation {
    /* background-color: #e8f5e9; */
    /* border: 1px solid #4caf50; */
    /* padding: 15px; */
    /* margin: 20px 0; */
    /* border-radius: 5px; */
    /* font-size: 16px; */
    /* color: #2e7d32; */
}

/* Persona Cards */
.persona-card {
    border: 1px solid #dddddd54;
    padding: 24px;
    margin: 0; /* Remove margin so grid gap is used */
    border-radius: 8px;
    background: #000;
    box-sizing: border-box;
}

.persona-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.persona-card ul {
    padding-left: 20px;
}

.persona-card ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* Add this to your style.css */
#bogi-analyze-form {
    display: flex;
    flex-direction: column;
    gap: 1.6em;
}

/* Persona Cards Grid Layout */
#bogi-personas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6em;
    margin-top: 2em;
}

/* Make persona photo fill 60% of the card width and center it */
.persona-card .persona-photo {
    display: block;
    width: 60%;
    max-width: 120px;
    min-width: 60px;
    margin: 0 auto 1em auto;
    border-radius: 50%;
    object-fit: cover;
}

