/* 
 * SILEX PERSPECTIVE UI v1.0
 */

/* Kafelki wyboru perspektywy */
.perspective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.persp-card {
    border: 2px solid var(--line-color, #ccc);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
}

.persp-card:hover {
    border-color: var(--ink-red, #b22234) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.persp-card.active {
    background: var(--ink-red, #b22234) !important;
    color: white !important;
    border-color: var(--ink, #333) !important;
}

.persp-card.active p {
    color: rgba(255,255,255,0.8) !important;
}

/* Kontenery perspektyw */
.perspective-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.perspective-content.active {
    display: block !important;
}

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

/* Przyciski perspektyw (tabs) */
.persp-btn-row {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.persp-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    font-family: 'Special Elite', monospace;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    color: var(--ink-blue, #2c3e66);
    border-radius: 4px;
}

.persp-btn:hover {
    background: #e0e0e0;
}

.persp-btn.active {
    background: var(--ink-red, #b22234) !important;
    color: white !important;
    border-color: var(--ink-red, #b22234);
}

/* System Recommendations Section */
.system-recommendations {
    background: #fff9c4;
    border-left: 5px solid #fbc02d;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.recommendation-tag {
    background: #fbc02d;
    color: #333;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 3px;
    margin-right: 10px;
}
