/* Dashboard styles for MYCO‑EMP Flex Plan Manager */

.myco-flex-dashboard {
    padding: 20px;
    color: #eee;
    background-color: #0d0d0d;
}
.myco-flex-dashboard h2 {
    color: #00ff99;
    margin-top: 40px;
}
.myco-flex-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.myco-flex-card {
    background: #141414;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    position: relative;
}
.myco-flex-card .card-image img {
    max-width: 100%;
    border-radius: 4px;
}
.myco-flex-card .card-title {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #b6f5d0;
}
.myco-flex-card .card-status {
    font-weight: bold;
    margin-bottom: 4px;
    color: #00ffaa;
}
.myco-flex-card .card-content p {
    margin: 4px 0;
    font-size: 0.85rem;
}
.myco-flex-card .progress-bar {
    background: #333;
    border-radius: 4px;
    height: 8px;
    margin-top: 6px;
    overflow: hidden;
}
.myco-flex-card .progress-bar span {
    display: block;
    height: 8px;
    background: linear-gradient(90deg, #00ffaa, #00b57f);
}
.myco-flex-card .card-actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.myco-flex-card .card-actions a.button {
    background: #00ffaa;
    border: none;
    color: #0d0d0d;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.myco-flex-card .card-actions a.button:hover {
    background: #00ffcc;
}
/* Responsive adjustments */
@media (max-width: 900px) {
    .myco-flex-card {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .myco-flex-card {
        width: 100%;
    }
}