/* CARDS */
.card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

/* BOARD CARD */
.board-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #eef2f6;
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.board-card-title {
    font-weight: 600;
}

/* BADGES */
.badge {
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    color: white;
    display: inline-block;
}

.badge-pendiente {
    background: #ff9800;
}

.badge-enprogreso {
    background: #2196f3;
}

.badge-completado {
    background: #4caf50;
}

/* TOAST */
.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* COMMENTS */
.comment {
    background: #f8f8f8;
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 6px;
}

.comment-actions {
    margin-top: 5px;
    display: flex;
    gap: 5px;
}

/* UTILS */
.muted {
    color: #64748b;
    font-size: 13px;
}

.row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.space {
    justify-content: space-between;
}

.board-card {
    background: #ffffffcc;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.board-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.board-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.invite-icon {
    margin-left: 5px;
}

.btn.ghost.invite-board {
    border: 1px solid #4fa4ff;
    color: #4fa4ff;
}

.btn.ghost.invite-board:hover {
    background: #4fa4ff;
    color: white;
}