/* dashboards.css - Dashboards page specific styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: #1A1F2C;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #2f3a48;
    transition: all 0.2s ease;
    animation: fadeIn 0.3s ease;
}

body.light .dashboard-card {
    background: #ffffff;
    border-color: #e2e8f0;
}

.dashboard-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(45, 212, 191, 0.2);
}

.dashboard-img {
    height: 150px;
    background: linear-gradient(145deg, #2c7da0, #144e6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    gap: 0.5rem;
}

.dashboard-img i {
    font-size: 1.8rem;
}

.dashboard-body {
    padding: 1.5rem;
}

.dashboard-body h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

body.light .dashboard-body h4 {
    color: #0f172a;
}

.dashboard-body p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.dashboard-body .tech-tag {
    background: #26313f;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.7rem;
    display: inline-block;
    margin: 0.2rem;
    color: #cbd5e1;
    border: 1px solid #3a4757;
}

body.light .dashboard-body .tech-tag {
    background: #e2e8f0;
    color: #334155;
    border-color: #cbd5e1;
}

.btn-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: 0.2s ease;
}

.btn-link:hover {
    transform: translateX(3px);
    text-decoration: underline;
}

.simulated-feed {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px dashed var(--accent-teal);
    margin-top: 2rem;
    text-align: center;
    color: var(--text-soft);
}

.simulated-feed i {
    color: var(--accent-teal);
    margin-right: 0.5rem;
}