/* Tutorial page specific styles */

.active {
    background-color: #34495e !important;
}

.tutorial-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.interface-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.interface-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.interface-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.interface-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    background: #f8fafe;
    border-radius: 0 10px 10px 0;
}

.step-number {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tip {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.advanced-search-info,
.sort-info,
.action-info,
.settings-info {
    margin-bottom: 2rem;
    text-align: center;
}

.advanced-search-info h3,
.sort-info h3,
.action-info h3,
.settings-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.search-field {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #9b59b6;
}

.search-field h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.search-field p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.sort-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sort-option {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    text-align: center;
}

.sort-option h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sort-option p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-item {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.action-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.action-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.settings-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.settings-category {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #8e44ad;
}

.settings-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.settings-category ul {
    list-style: none;
    padding: 0;
}

.settings-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.settings-category li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
}

.settings-category li:last-child {
    border-bottom: none;
}

.settings-category strong {
    color: #2c3e50;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #f39c12;
}

.tip-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tip-item ul {
    list-style: none;
    padding: 0;
}

.tip-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.tip-item li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

.tip-item li:last-child {
    border-bottom: none;
}

.workflow-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #16a085;
}

.workflow-number {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.workflow-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.workflow-content p {
    color: #666;
    line-height: 1.6;
}

.help-content {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.image-placeholder {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border: 2px dashed #e17055;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    color: #2d3436;
    font-style: italic;
}

.image-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .interface-grid,
    .search-fields,
    .sort-options,
    .actions-grid,
    .settings-categories,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .step,
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number,
    .workflow-number {
        align-self: center;
    }
    
    .help-links {
        flex-direction: column;
        align-items: center;
    }
}