/* Basic reset and body styling */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
}

/* Style for the logo placeholder */
.logo-placeholder img {
    /* Since the user said "large PNG", I'll set a size and a subtle background for the placeholder */
    width: 300px;
    height: 100px;
    margin-bottom: 20px;
    /* In a real scenario, the image would be provided. For now, this just scales the placeholder image */
}

/* Style for the text and dropdown container */
.design-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.phrase {
    margin-right: 10px;
}

/* Style for the neatly rounded dropdown */
.rounded-dropdown {
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 25px; /* Neatly rounded */
    background-color: white;
    font-size: 1em;
    cursor: pointer;
    -webkit-appearance: none; /* Remove default browser styling for select */
    -moz-appearance: none;
    appearance: none;
}

.rounded-dropdown:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}
