﻿.placeholder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-image {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.placeholder-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-1);
    margin-bottom: 15px;
}

.placeholder-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructions-list {
    text-align: left;
    margin: 0 auto;
    max-width: 450px;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.instruction-icon {
    min-width: 24px;
    margin-right: 12px;
    color: var(--secondary-2);
    font-size: 20px;
}

.instruction-text {
    margin-top: 3px;
}

.empty-state-container {
    background-color: #f9fafb;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}