/* Container for consistent width with other pages */
.container2 {
    width: 96%;
    min-width: 1200px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 0;
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 14px;
    color: #64748b;
    width: 100%;
    justify-content: flex-start;
}

.breadcrumb-item {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

.breadcrumb-item:hover {
    color: var(--color);
}

.breadcrumb-item.breadcrumb-current {
    font-weight: 500;
    cursor: default;
    pointer-events: none;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Smart Selection Tool Styles */
.smart-selection-container {
    min-height: 600px;
    padding: 40px 0 60px;
    background: #f8fafc;
}

.selection-form-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.selection-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn-submit {
    flex: 1;
    height: 48px;
    background: linear-gradient(135deg, var(--color) 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-reset {
    padding: 0 24px;
    height: 48px;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.results-container {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
