/* Prop Firm Use Case Selector - Frontend Styles */

.prop-firm-selector-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.prop-firm-selector-header {
    margin-bottom: 32px;
    text-align: center;
}

.selector-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.prop-firm-selector-dropdown {
    position: relative;
    margin-bottom: 32px;
}

.use-case-select {
    width: 100%;
    padding: 16px 48px 16px 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #2c3e50;
    background: #ffffff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.use-case-select:hover {
    border-color: #3498db;
}

.use-case-select:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
    transition: transform 0.3s ease;
}

.use-case-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.prop-firm-content-container {
    min-height: 200px;
}

.use-case-content {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-inner {
    background: #ffffff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.content-inner h1,
.content-inner h2,
.content-inner h3,
.content-inner h4 {
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.content-inner h1 {
    font-size: 32px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.content-inner h2 {
    font-size: 24px;
    margin-top: 32px;
}

.content-inner h3 {
    font-size: 20px;
    margin-top: 24px;
}

.content-inner p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}

.content-inner ul,
.content-inner ol {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-inner li {
    margin-bottom: 8px;
}

.content-inner a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.content-inner a:hover {
    color: #1a5f8a;
    border-bottom-color: #1a5f8a;
}

.content-inner strong {
    color: #2c3e50;
    font-weight: 600;
}

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #ffffff;
}

.content-inner table th {
    background: #f8fafc;
    color: #2c3e50;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #e1e8ed;
}

.content-inner table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #4a5568;
}

.content-inner table tr:hover {
    background: #f8fafc;
}

.content-inner blockquote {
    border-left: 4px solid #3498db;
    padding: 16px 24px;
    margin: 24px 0;
    background: #f8fafc;
    color: #4a5568;
    font-style: italic;
}

.content-inner code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e74c3c;
}

.content-inner pre {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}

.content-inner pre code {
    background: transparent;
    color: #ecf0f1;
    padding: 0;
}

.content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prop-firm-selector-container {
        padding: 0 16px;
        margin: 24px auto;
    }
    
    .selector-title {
        font-size: 24px;
    }
    
    .content-inner {
        padding: 24px 20px;
    }
    
    .content-inner h1 {
        font-size: 26px;
    }
    
    .content-inner h2 {
        font-size: 22px;
    }
    
    .content-inner h3 {
        font-size: 18px;
    }
    
    .use-case-select {
        padding: 14px 44px 14px 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .selector-title {
        font-size: 20px;
    }
    
    .content-inner {
        padding: 20px 16px;
    }
    
    .content-inner h1 {
        font-size: 22px;
    }
}
