/* SOLUTION FINDER - ENTERPRISE AI REDESIGN */
.solution-finder-navbar {
    position: relative;
    z-index: 10;
    margin-top: 0; 
    padding: 2rem 2rem;
    margin-bottom: 0; 
    display: flex;
    justify-content: center;
}

.solution-finder-container {
    background: rgba(4, 11, 23, 0.95); /* Darker solid background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 230, 255, 0.2);
    border-radius: 12px;
    padding: 40px 50px; /* Restored larger padding */
    margin: 0 auto;
    width: 100%;
    max-width: 1200px; /* Restored original width */
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(0, 230, 255, 0.05); /* Softer outer glow */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Restored gap */
}

.finder-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem; /* Slightly larger title */
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.finder-controls-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Restored gap */
    width: 100%;
}

.form-select {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0 20px;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem; /* Restored size */
    height: 54px; /* Restored size */
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); 
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 1.5em;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #00e6ff;
    background-color: rgba(0, 230, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300e6ff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    box-shadow: 0 0 0 3px rgba(0, 230, 255, 0.1);
}

.form-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.form-select option {
    background-color: #0a1733;
    color: #ffffff;
}

.finder-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.solution-button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem; /* Restored size */
    text-transform: uppercase;
    border-radius: 6px;
    padding: 0 25px; /* Restored padding */
    height: 54px; /* Restored size */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.5px;
}

#search-solution-btn {
    background: #00e6ff;
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 230, 255, 0.2);
}

#search-solution-btn:hover:not(:disabled) {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 230, 255, 0.4);
    transform: translateY(-2px);
}

#search-solution-btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: #6b7280;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    cursor: not-allowed;
}

.solution-button.secondary-button {
    background: transparent;
    color: #a0aec0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-button.secondary-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 992px) {
    .solution-finder-navbar { margin-top: 2rem; padding: 0 1rem; }
    .solution-finder-container { padding: 30px 20px; gap: 20px; }
    .finder-title { font-size: 1.5rem; }
    .finder-controls-row { flex-direction: column; }
    .form-select { width: 100%; height: 55px; }
    .finder-buttons { width: 100%; flex-direction: column; gap: 12px; }
    .solution-button { width: 100%; height: 55px; justify-content: center; }
}