/* Customizing Native Dropdown Arrows for the Business Test Form */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select option {
    background-color: #0f172a; /* Matches the dark navy background */
    color: white;
}

/* =========================================
   BUSINESS THEME OVERRIDES
   ========================================= */

/* Override the Global Background */
body {
    /* Corporate Tri-tone: Deep Navy -> Rich Teal -> Antique Gold */
    background: linear-gradient(135deg, #0f172a 0%, #115e59 50%, #92400e 100%) !important;
}

/* Override the floating background shapes to match the corporate theme */
.bg-shapes div:nth-child(1) {
    /* Muted Teal glow for the top left */
    background-color: rgba(20, 184, 166, 0.15) !important; 
}

.bg-shapes div:nth-child(2) {
    /* Muted Gold glow for the bottom right */
    background-color: rgba(217, 119, 6, 0.15) !important; 
}