/**
 * Independent Practice Activity Styles
 */

.practice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.practice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.practice-card {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.practice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.practice-header i {
    font-size: 2rem;
}

.practice-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.practice-body {
    padding: 1.5rem;
}

.practice-intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.software-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 2rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.software-badge i {
    color: #4f46e5;
}

.tips-section {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.tips-section h4 {
    margin: 0 0 0.75rem;
    color: #854d0e;
    font-size: 1rem;
    font-weight: 700;
}

.tips-section ul {
    margin: 0;
    padding-left: 1.25rem;
}

.tips-section li {
    color: #713f12;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tips-section li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .practice-content {
        padding: 1rem;
    }

    .practice-header {
        padding: 1.25rem;
    }

    .practice-header h2 {
        font-size: 1.25rem;
    }

    .practice-body {
        padding: 1.25rem;
    }
}
